You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the constructor has been deprecated in favor of PlaneShape(normal, offset), but is it really necessary to deprecate it? I can imagine it being convenient for an end user to construct a PlaneShape using normal and point information, and I don't see why having the two alternative constructors would hurt anything.
The text was updated successfully, but these errors were encountered:
It's deprecated while changing the member variables from (normal, point(3d-vector)) to (normal, offset(scalar)) since point is redundant representation. I agree that PlaneShape(normal, point) is still convenient constructor. One minor concern is that we should provide [set/get]Point(~) also or not.
I think that the point information is sort of lost once the plane is constructed, because there are infinite points that can be used to define a plane. I don't really see that function as being necessary.
I noticed that the constructor has been deprecated in favor of PlaneShape(normal, offset), but is it really necessary to deprecate it? I can imagine it being convenient for an end user to construct a PlaneShape using normal and point information, and I don't see why having the two alternative constructors would hurt anything.
The text was updated successfully, but these errors were encountered: