VisualPOVRAY.Point2.update C# (CSharp) Method

update() public method

public update ( float currentTime ) : void
currentTime float
return void
        public void update(float currentTime)
        {
            if (reactive)
            {
                x = xs.now(currentTime);
                y = ys.now(currentTime);
            }
        }