TriangleNet.Quality.Quality C# (CSharp) Method

Quality() public method

public Quality ( Mesh mesh ) : System
mesh Mesh
return System
        public Quality(Mesh mesh)
        {
            logger = SimpleLog.Instance;

            badsubsegs = new Queue<BadSubseg>();
            queue = new BadTriQueue();

            this.mesh = mesh;
            this.behavior = mesh.behavior;

            newLocation = new NewLocation(mesh);
        }