applyMatrix4 method

Sphere applyMatrix4(
  1. Matrix4 matrix
)

Implementation

Sphere applyMatrix4(Matrix4 matrix) {
  center.applyMatrix4(matrix);

  radius = radius * matrix.getMaxScaleOnAxis();

  return this;
}