MCPcopy Index your code
hub / github.com/jabbany/CommentCoreLibrary / appendScale

Method appendScale

src/scripting/api/Display/Matrix.ts:225–232  ·  view source on GitHub ↗
(sX:number = 1, sY:number = 1, sZ:number = 1)

Source from the content-addressed store, hash-verified

223 }
224
225 public appendScale(sX:number = 1, sY:number = 1, sZ:number = 1):void{
226 this._data = this.dotProduct([
227 sX, 0, 0, 0,
228 0, sY, 0, 0,
229 0, 0, sZ, 0,
230 0, 0, 0, 1
231 ],this._data);
232 }
233
234 public prepend(rhs:Matrix3D):void {
235 this._data = this.dotProduct(this._data, rhs._data);

Callers 1

box3dMethod · 0.80

Calls 1

dotProductMethod · 0.95

Tested by

no test coverage detected