alpha
Login
or
Join now
gwen.works
/
shapemaker
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
✨ Add ColoredObject#add_named_to
author
Gwenn Le Bihan
date
8 months ago
(Oct 21, 2025, 9:58 PM +0200)
commit
86923969
86923969a2c77a6da4c05039995b149ba3fac13c
parent
a31825f3
a31825f35ca98f3f30f07786ac3a603c4fd0d7d2
+4
1 changed file
Expand all
Collapse all
Unified
Split
src
graphics
layer.rs
+4
src/graphics/layer.rs
Reviewed
···
157
157
pub fn add_to(self, layer: &mut Layer) {
158
158
layer.add_anon(self);
159
159
}
160
160
+
161
161
+
pub fn add_named_to(self, name: impl Display, layer: &mut Layer) {
162
162
+
layer.add(name, self);
163
163
+
}
160
164
}