VisualPOVRAY.Point2.Point2 C# (CSharp) Method

Point2() public method

public Point2 ( float x, float y, bool reactive = false ) : System
x float
y float
reactive bool
return System
        public Point2(float x, float y, bool reactive = false)
        {
            this.reactive = reactive;
            this.x = x;
            this.y = y;
            if (reactive)
            {
                this.xs = new Lift0f(x);
                this.ys = new Lift0f(y);
            }
        }

Same methods

Point2::Point2 ( Signal xs, Signal ys ) : System