Connect() public method

public Connect ( Tesselate tesselator, bool setEdgeFlag ) : void
tesselator Tesselate
setEdgeFlag bool
return void
Exemplo n.º 1
0
 public CanvasGL2d(int canvasW, int canvasH)
 {
     this.canvasW  = canvasW;
     this.canvasH  = canvasH;
     sclineRas     = new GLScanlineRasterizer();
     sclineRasToGL = new GLScanlineRasToDestBitmapRenderer();
     sclinePack8   = new GLScanlinePacked8();
     tessListener.Connect(tess, Tesselate.Tesselator.WindingRuleType.Odd, true);
 }
Exemplo n.º 2
0
 public TessTool(Tesselate.Tesselator tess)
 {
     this.tess         = tess;
     this.tessListener = new TessListener2();
     tessListener.Connect(tess, true);
 }
Exemplo n.º 3
0
 public TessTool(Tesselate.Tesselator tess)
 {
     this.tess = tess;
     this.tessListener = new TessListener2();
     tessListener.Connect(tess, true);
 }