slight improvements to simplerender
All checks were successful
/ Build BaseBand DSM & Broadway (push) Successful in 2m16s

This commit is contained in:
Daniella / Tove 2024-06-20 21:22:42 +02:00
parent 3d959cdf42
commit b30867a07e
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -89,6 +89,10 @@ public class SimpleRender {
this.parent = parent;
}
public SimplePolyMesh<T> point(Vec3d p) {
return point(p.x, p.y, p.z);
}
public SimplePolyMesh<T> point(double x, double y, double z) {
put(x, y, z);
return this;