use of org.poly2tri.triangulation.point.ardor3d.ArdorVector3Point in project energy3d by concord-consortium.
the class Wall method applyXYTransform.
public void applyXYTransform(final List<Vector3> hole) {
if (toXY == null) {
computeNormalAndXYTransform();
}
for (final Vector3 p : hole) {
final Point point = new ArdorVector3Point(p);
toXY.transform(point);
p.set(point.getX(), point.getY(), point.getZ());
}
}
Aggregations