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
class B2Mat22
{
public function new ()
{
col1 = new B2Vec2(0, 1.0);
col2 = new B2Vec2(0, 1.0);
}
}
This would initialize the matrix in a way that when used as a transform results in a width of 0, which is hardly ever useful. I'd except it to be initialized as such:
class B2Mat22
{
public function new ()
{
col1 = new B2Vec2(1.0, 0);
col2 = new B2Vec2(0, 1.0);
}
}
The text was updated successfully, but these errors were encountered:
This would initialize the matrix in a way that when used as a transform results in a width of 0, which is hardly ever useful. I'd except it to be initialized as such:
The text was updated successfully, but these errors were encountered: