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

RotateY() public method

public RotateY ( float angle ) : void
angle float
return void
        public void RotateY(float angle)
        {
            this.LocalRotation.Elements[1] += angle;
            this._localRotationMatrix.RotateY(angle);

            this.InvalidateWorldTransformation();

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