VisualPOVRAY.Point2.Point2 C# (CSharp) Method

Point2() public method

public Point2 ( Signal xs, Signal ys ) : System
xs Signal
ys Signal
return System
        public Point2(Signal<float> xs, Signal<float> ys)
        {
            this.reactive = true;
            this.xs = xs;
            this.ys = ys;
            this.x = xs.now(0);
            this.y = ys.now(0);
        }

Same methods

Point2::Point2 ( float x, float y, bool reactive = false ) : System