VisualPOVRAY.Point2.move C# (CSharp) Method

move() public method

public move ( Point3 loc ) : void
loc Point3
return void
        public void move(Point3 loc)
        {
            this.x = loc.x;
            this.y = loc.y;
        }