Example #1
0
        public TeethVisual3D addTeeth(Point3D center)
        {
            TeethVisual3D teeth = null;

            if (selectedGum != null)
            {
                selectedGum.selectedPoint = center;
                //return selectedGum.addTeeth();
                teeth = selectedGum.addNewTeeth();
            }

            return(teeth);
        }