GameGraphics.GraphicsObject.SetRadius C# (CSharp) Method

SetRadius() public method

Sets the radius of the GraphicsObject
public SetRadius ( float r ) : void
r float the radius to be given to the object
return void
        public void SetRadius(float r)
        {
            this.radius = r;
        }