private void button2_Click(object sender, EventArgs e) { if (u_x1_3.Text == "" || u_x2_3.Text == "" || u_y1_3.Text == "" || u_y2_3.Text == "" || u_h1.Text == "" || u_h2.Text == "") { MessageBox.Show("Please Enter All The Values For Both The Vectors"); } else { vector1_3 = new Genetibase.MathX.NuGenStructures.NuGenPnt3D(); vector1_3._x = new Double[3]; vector1_3._x[0] = Double.Parse(u_x1_3.Text); vector1_3._x[1] = Double.Parse(u_y1_3.Text); vector1_3._x[2] = Double.Parse(u_h1.Text); vector2_3 = new Genetibase.MathX.NuGenStructures.NuGenPnt3D(); vector2_3._x = new Double[3]; vector2_3._x[0] = double.Parse(u_x2_3.Text); vector2_3._x[1] = double.Parse(u_y2_3.Text); vector2_3._x[2] = Double.Parse(u_h2.Text); button_add_3.Enabled = true; button_div_3.Enabled = true; button_equal_3.Enabled = true; button_less_equal_3.Enabled = true; button_mul_3.Enabled = true; button_sub_3.Enabled = true; } }
public static bool ApproxEquals(NuGenPnt3D a, NuGenPnt3D b) { return (Math.Abs(a._x[0] - b._x[0]) < NuGenVector.TINY_DOUBLE && Math.Abs(a._x[1] - b._x[1]) < NuGenVector.TINY_DOUBLE && Math.Abs(a._x[2] - b._x[2]) < NuGenVector.TINY_DOUBLE); }
public static NuGenPnt3D Max(NuGenPnt3D a, NuGenPnt3D b) { return(new NuGenPnt3D( Math.Max(a._x[0], b._x[0]), Math.Max(a._x[1], b._x[1]), Math.Max(a._x[2], b._x[2]) )); }
public override bool Equals(object obj) { NuGenPnt3D x = (NuGenPnt3D)obj; return( _x[0] == x._x[0] && _x[1] == x._x[1] && _x[2] == x._x[2] ); }
public static NuGenBox3D operator +(NuGenBox3D b, NuGenBox3D c) { return(new NuGenBox3D(NuGenPnt3D.Min(b.lower, c.lower), NuGenPnt3D.Max(b.upper, c.upper))); }
public bool IsOnBorder(NuGenPnt3D p) { return(IsInsideOrOnBorder(p) && !IsInside(p)); }
public bool IsInsideOrOnBorder(NuGenPnt3D p) { return(lower <= p && upper >= p); }
public bool IsInside(NuGenPnt3D p) { return(lower < p && upper > p); }
public NuGenBox3D(NuGenPnt3D lower, NuGenPnt3D upper) { this.lower = lower; this.upper = upper; }
public static NuGenPnt3D Max(NuGenPnt3D a, NuGenPnt3D b) { return new NuGenPnt3D( Math.Max(a._x[0], b._x[0]), Math.Max(a._x[1], b._x[1]), Math.Max(a._x[2], b._x[2]) ); }
private void button2_Click(object sender, EventArgs e) { if (u_x1_3.Text == "" || u_x2_3.Text == "" || u_y1_3.Text == "" || u_y2_3.Text == "" || u_h1.Text == "" || u_h2.Text == "") { MessageBox.Show("Please Enter All The Values For Both The Vectors"); } else { vector1_3 = new Genetibase.MathX.NuGenStructures.NuGenPnt3D (); vector1_3._x = new Double[3]; vector1_3._x[0] = Double.Parse(u_x1_3.Text); vector1_3._x[1] = Double.Parse(u_y1_3.Text); vector1_3._x[2] = Double.Parse(u_h1.Text); vector2_3 = new Genetibase.MathX.NuGenStructures.NuGenPnt3D (); vector2_3._x = new Double[3]; vector2_3._x[0] = double.Parse(u_x2_3.Text); vector2_3._x[1] = double.Parse(u_y2_3.Text); vector2_3._x[2] = Double.Parse(u_h2.Text); button_add_3.Enabled = true; button_div_3.Enabled = true; button_equal_3.Enabled = true; button_less_equal_3.Enabled = true; button_mul_3.Enabled = true; button_sub_3.Enabled = true; } }
public NuGenRay3D(NuGenPnt3D p, NuGenVec3D v) { this.p = p; this.v = v; }
public NuGenTriangle3D(NuGenPnt3D a, NuGenPnt3D b, NuGenPnt3D c) { p0 = a; p1 = b; p2 = c; }
public NuGenSphere3D(NuGenPnt3D center, double radius) { this.center = center; this.radius = radius; }