R3.Geometry.Sphere.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : Sphere
return Sphere
        public Sphere Clone()
        {
            return (Sphere)MemberwiseClone();
        }

Usage Example

Exemplo n.º 1
0
        private static Circle3D HoneycombEdgeUHS(int p, int q, int r)
        {
            Sphere[] simplex = Mirrors(p, q, r, moveToBall: false);
            Sphere   s1      = simplex[0].Clone();
            Sphere   s2      = s1.Clone();

            s2.Reflect(simplex[1]);
            Circle3D intersection = s1.Intersection(s2);

            return(intersection);
        }
All Usage Examples Of R3.Geometry.Sphere::Clone