-
Type:
Enhancement
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 8
-
Component/s: javafx
Point3D should contain the following method:
public Point3D multiply(double factor) {
return new Point3D(x * factor, y * factor, z * factor);
}
public Point3D multiply(double factor) {
return new Point3D(x * factor, y * factor, z * factor);
}