Hi,
I'm wondering about the area property of SKPhysicsBody.
let body = SKPhysicsBody(circleOfRadius: 1.0, center: CGPointZero)
print("\(body.area)")
This code outputs 0.000139626354211941
I'm confused: shouldn't the result be π = 3.141 ... ? Have I missed something in the documentation? Incorrect area also leads to incorrect mass for a given shape and density.