Beispiel #1
0
 public void InitPrebuiltProcess(CurvedPolygonsNet curvedPolygonsNet,
                                 TessellationOutput output, CPNSubset subSet, short[] loqs,
                                 InterpolationSchemaMap map = null)
 {
     this.tessellationOutput         = output;
     CPNGuideEvaluator.CPNGuide_loqs = loqs;
     this.curvedPolygonsNet          = curvedPolygonsNet;
     this.subSet = subSet;
     this.map    = map;
 }
Beispiel #2
0
 public TessellationOutput InitProcess(CurvedPolygonsNet curvedPolygonsNet, short[] loqs,
                                       InterpolationSchemaMap map = null)
 {
     tessellationOutput = new TessellationOutput();
     CPNGuideEvaluator.CPNGuide_loqs = loqs;
     this.curvedPolygonsNet          = curvedPolygonsNet;
     this.subSet = null;
     this.map    = map;
     return(tessellationOutput);
 }