CreatePolygonGraphicsPath() public static method

public static CreatePolygonGraphicsPath ( float xycoords ) : InternalGraphicsPath
xycoords float
return InternalGraphicsPath
Example #1
0
 public RenderVx CreatePolygonRenderVx(float[] xycoords)
 {
     //store internal gfx path inside render vx
     return(new GLRenderVx(InternalGraphicsPath.CreatePolygonGraphicsPath(xycoords)));
 }