Changes between Initial Version and Version 1 of Ticket #3435, comment 3
- Timestamp:
- 01/20/16 00:27:27 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3435, comment 3
initial v1 1 1 tomvantilburg, 2 2 3 The problem seems to be that I need to specify if the polygon is convex or not. Seems the spec assumes convex. 3 The problem seems to be that I need to specify if the polyhedral is convex or not. Seems the spec assumes convex if not stated so guess I have to come up with routine for that. 4 5 So before: 6 7 [[Image(current_state.png)]] 4 8 5 9 I redid mine using: … … 20 24 and output then looks correct: 21 25 26 [[Image(future_state_not_convex.png)]] 27 28 So I guess solution is I've got to figure out if the polyhderal or polygon is convex or concave. I'm thinking if all polygons are convex (e.g. convexhull(polygon) = polygon) for all faces holds true then it's convex, otherwise concave. 29