VisualPOVRAY.Sphere.update C# (CSharp) Method

update() public method

public update ( float time ) : void
time float
return void
        public void update(float time)
        {
            if (reactive)
            {
                this.location.update(time);
                this.translate.update(time);
                this.rotation.update(time);
                this.radius.now(time);
            }
        }