CreateVertices() private static method

private static CreateVertices ( PolygonCreationAssistance pca ) : List
pca PolygonCreationAssistance
return List
Ejemplo n.º 1
0
 public static Vertices CreatePolygon(uint[] data, int width, int height, bool holeDetection)
 {
     return(TextureConverter.CreateVertices(data, width, height, holeDetection));
 }
Ejemplo n.º 2
0
 public static List <Vertices> CreatePolygon(uint[] data, int width, int height, float hullTolerance,
                                             byte alphaTolerance, bool multiPartDetection, bool holeDetection)
 {
     return(TextureConverter.CreateVertices(data, width, height, hullTolerance, alphaTolerance,
                                            multiPartDetection, holeDetection));
 }
Ejemplo n.º 3
0
 public static Vertices CreatePolygon(uint[] data, int width, int height)
 {
     return(TextureConverter.CreateVertices(data, width, height));
 }