VisualPOVRAY.Camera.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.look_at.update(time);
                this._bumps.now(time);
                this._mesh.now(time);
            }
        }