I have a path which should have the shape of an isometric tile:
let isometricPath = CGPathCreateMutable()
CGPathMoveToPoint(isometricPath, nil, 0, -(tileSize.height / 2))
CGPathAddLineToPoint(isometricPath, nil, (tileSize.width / 2), 0)
CGPathAddLineToPoint(isometricPath, nil, 0, (tileSize.height / 2))
CGPathAddLineToPoint(isometricPath, nil, -(tileSize.width / 2), 0)
CGPathCloseSubpath(isometricPath)
and i try to make it an opaque path with this line of code:
let isometricPathRef = isometricPath as CGPathRef
but if i want to check if a CGPoint is inside that path with this:
CGPathContainsPoint(isometricPathRef, nil, locationInNode, true)
It detect the point only on the path but not inside.
How to make that possible?
Thanks
Your code is correct but you should probably look at the origins of your scene. Are your sure you can see your shape?
By default, a scene’s origin is placed in the lower-left corner of the view. So, a default scene is initialized with a height of 1024 and a width of 768, has the origin (0,0) in the lower-left corner, and the (1024,768) coordinate in the upper-right corner. The frame property holds (0,0)-(1024,768).
Suppose you have this example using your question code:
This path represent a rhombus shape.
Now if I want to draw this shape I can do:
But nothing is showed because my scene origin start from 0.0 and your shape have negative values.
To show my rhombus I can simply change the scene anchorPoint to:
This centers the scene’s origin in the middle of the view (Apple docs) and you can see your tile:
Now suppose you want to know if a point is inside your shape:
I want to show this point simply for debug:
Now we can check if this point is inside the rhombus:
Output: