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
Quaternions and Vector3s are used throughout the generator methods, but are almost exclusively passed by value. In order to squeeze as much performance as possible, all data types storing multiple values should be passed by reference instead. This is especially important for propagateQuad since this method is called for each quad that is generated.
The text was updated successfully, but these errors were encountered:
Quaternions and Vector3s are used throughout the generator methods, but are almost exclusively passed by value. In order to squeeze as much performance as possible, all data types storing multiple values should be passed by reference instead. This is especially important for propagateQuad since this method is called for each quad that is generated.
The text was updated successfully, but these errors were encountered: