mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-24 01:15:25 +01:00
18 lines
348 B
Java
18 lines
348 B
Java
package cad.fx;
|
|
|
|
import cad.math.Vector;
|
|
import javafx.scene.Group;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Sketch {
|
|
|
|
public final Polygon owner;
|
|
public final List<List<Vector>> polygons = new ArrayList<>();
|
|
public final Group drawLayer = new Group();
|
|
|
|
public Sketch(Polygon owner) {
|
|
this.owner = owner;
|
|
}
|
|
}
|