VisualPOVRAY.Point3.Point3 C# (CSharp) Method

Point3() public method

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

Same methods

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