VisualPOVRAY.Point2.update C# (CSharp) 메소드

update() 공개 메소드

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