VisualPOVRAY.Point3.Point3 C# (CSharp) Method

Point3() public method

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

Same methods

Point3::Point3 ( Signal xs, Signal ys, Signal zs ) : System