Skip to content

Commit

Permalink
updated to donatello 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
i-make-robots committed Jan 11, 2025
1 parent cdabbb7 commit ae08a54
Show file tree
Hide file tree
Showing 25 changed files with 440 additions and 122 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -555,12 +555,12 @@ It pairs really well with Marlin-polargraph, the code in the brain of the robot
<dependency>
<groupId>org.marginallyclever</groupId>
<artifactId>donatello</artifactId>
<version>1.1</version>
<version>1.2</version>
</dependency>
<dependency>
<groupId>com.marginallyclever</groupId>
<artifactId>nodegraphcore</artifactId>
<version>1.0.21</version>
<version>1.0.22</version>
</dependency>

<!-- dockable windows -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public void registerNodes() {
NodeFactory.registerNode(AddTurtles.class);
NodeFactory.registerNode(ColorTurtle.class);
NodeFactory.registerNode(LoadTurtle.class);
NodeFactory.registerNode(LineWeightByImage.class);
NodeFactory.registerNode(PathImageMask.class);
NodeFactory.registerNode(PatternOnPath.class);
NodeFactory.registerNode(PointOnPath.class);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.marginallyclever.makelangelo.donatelloimpl.nodes;

import com.marginallyclever.makelangelo.turtle.Turtle;
import com.marginallyclever.nodegraphcore.dock.Input;
import com.marginallyclever.nodegraphcore.dock.Output;
import com.marginallyclever.nodegraphcore.port.Input;
import com.marginallyclever.nodegraphcore.port.Output;
import com.marginallyclever.nodegraphcore.Node;

public class AddTurtles extends Node {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import com.marginallyclever.makelangelo.turtle.MovementType;
import com.marginallyclever.makelangelo.turtle.Turtle;
import com.marginallyclever.makelangelo.turtle.TurtleMove;
import com.marginallyclever.nodegraphcore.dock.Input;
import com.marginallyclever.nodegraphcore.dock.Output;
import com.marginallyclever.nodegraphcore.port.Input;
import com.marginallyclever.nodegraphcore.port.Output;
import com.marginallyclever.nodegraphcore.Node;

import java.awt.*;
Expand Down
Loading

0 comments on commit ae08a54

Please sign in to comment.