mixins: Fix convex hulls being incorrectly contoured

the Models returned by getModel are already contoured if required; we do not need to do it again
This commit is contained in:
Max Weber
2019-03-29 14:42:39 -06:00
committed by Adam
parent 4d71194b45
commit dd993224ef
8 changed files with 64 additions and 38 deletions

View File

@@ -162,12 +162,8 @@ public interface RSModel extends RSRenderable, Model
/**
* Compute the convex hull of this model
* @param localX
* @param localY
* @param orientation
* @return
*/
Polygon getConvexHull(int localX, int localY, int orientation);
Polygon getConvexHull(int localX, int localY, int orientation, int tileHeight);
float[][] getFaceTextureUCoordinates();
void setFaceTextureUCoordinates(float[][] rl$faceTextureUCoordinates);