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

Translate3() public method

public Translate3 ( float x, float y, float z ) : void
x float
y float
z float
return void
        public void Translate3(float x, float y, float z)
        {
            this.LocalTranslation.Add3(x, y, z);
            this._localTranslationMatrix.Translate3(x, y, z);

            this.InvalidateWorldTransformation();

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