GLSharp.Universe.Node.Scale C# (CSharp) Method

Scale() public method

public Scale ( Vector3 scale ) : void
scale Vector3
return void
        public void Scale(Vector3 scale)
        {
            this.LocalScale.MultVect(scale);
            this._localScaleMatrix.Scale(scale);

            this.InvalidateWorldTransformation();

            this.TransformChanged.Fire(this, null);
        }