Skip to content

Commit

Permalink
Merge pull request #639 from hannobraun/model
Browse files Browse the repository at this point in the history
Fix overlapping group in test model
  • Loading branch information
hannobraun authored May 25, 2022
2 parents 404930a + fd41314 commit 3caa40b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub extern "C" fn model(_: &HashMap<String, String>) -> fj::Shape {
let b = star(5, [255, 0, 0, 255])
.rotate([1., 1., 1.], Angle::from_deg(45.))
.translate([3., 3., 1.]);
let c = spacer().rotate([1., 1., 1.], Angle::from_deg(90.));
let c = spacer().translate([6., 6., 1.]);

let group = a.group(&b).group(&c);

Expand Down

0 comments on commit 3caa40b

Please sign in to comment.