Пример #1
0
 public Quality(Mesh mesh)
 {
     this.logger      = SimpleLog.Instance;
     this.badsubsegs  = new Queue <BadSubseg>();
     this.queue       = new BadTriQueue();
     this.mesh        = mesh;
     this.behavior    = mesh.behavior;
     this.newLocation = new NewLocation(mesh);
 }
Пример #2
0
        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);
        }