scale

fun scale(pivot: Vector3dc, scale: Vector3dc, scaleUV: Boolean = false): ModelBuilder

Scales the model by scale to the given pivot point.

With scaleUV, the UV coordinates are scaled accordingly.


fun scale(scale: Vector3dc, scaleUV: Boolean = false): ModelBuilder

Scales the model by scale.

With scaleUV, the UV coordinates are scaled accordingly.


fun scale(pivot: Vector3dc, scale: Double, scaleUV: Boolean = false): ModelBuilder

Scales the model by the given factor scale for all axes to the given pivot point.

With scaleUV, the UV coordinates are scaled accordingly.


fun scale(scale: Double, scaleUV: Boolean = false): ModelBuilder

Scales the model by the given factor scale for all axes to the pivot point (8, 8, 8).

With scaleUV, the UV coordinates are scaled accordingly.