IS
xx
xx
Size: a a a
IS
IS
U
(
(
U
U
U
(
PK
PK
IS
IS
IS
IS
L
.add(new Rotation (x, y, z))
или что-то подобноеL
d
IS
public static void addRotate(Node node, Point3D rotationAxis, double angle) {
ObservableList<Transform> transforms = node.getTransforms();
try {
for (Transform t : transforms) {
rotationAxis = t.inverseDeltaTransform(rotationAxis);
}
} catch (NonInvertibleTransformException ex) {
throw new IllegalStateException(ex);
}
transforms.add(new Rotate(angle, rotationAxis));
}
IS