Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Honeycomb mazes #705

Merged
merged 5 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.marginallyclever</groupId>
<artifactId>Makelangelo</artifactId>
<version>7.43.0</version>
<version>7.44.0</version>
<name>Makelangelo</name>
<description>Makelangelo Software is a Java program that prepares art for CNC plotters. It is especially designed for the Makelangelo Robot.
It pairs really well with Marlin-polargraph, the code in the brain of the robot that receives instructions and moves the motors.</description>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
package com.marginallyclever.makelangelo.makeart.turtlegenerator;

import com.marginallyclever.makelangelo.makeart.turtlegenerator.maze.Generator_MazeCircle;
import com.marginallyclever.makelangelo.makeart.turtlegenerator.maze.Generator_MazeHoneycomb;
import com.marginallyclever.makelangelo.makeart.turtlegenerator.maze.Generator_MazeRectangle;

public class TurtleGeneratorFactory {
public static TurtleGenerator [] available = {
new Generator_Border(),
Expand All @@ -14,8 +18,9 @@ public class TurtleGeneratorFactory {
new Generator_KochCurve(),
new Generator_Lissajous(),
new Generator_LSystemTree(),
new Generator_Maze(),
new Generator_MazeRectangle(),
new Generator_MazeCircle(),
new Generator_MazeHoneycomb(),
new Generator_Package(),
new Generator_Polyeder(),
new Generator_SierpinskiTriangle(),
Expand Down
Loading