Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quad.copy discards point3 #221

Closed
Norbert515 opened this issue Jun 13, 2020 · 0 comments · Fixed by #230
Closed

Quad.copy discards point3 #221

Norbert515 opened this issue Jun 13, 2020 · 0 comments · Fixed by #230

Comments

@Norbert515
Copy link

  /// Create a quad as a copy of [other].
  Quad.copy(Quad other)
      : _point0 = new Vector3.copy(other._point0),
        _point1 = new Vector3.copy(other._point1),
        _point2 = new Vector3.copy(other._point2),
        _point3 = new Vector3.copy(other._point2);

It should be:

       _point3 = new Vector3.copy(other._point3);
Fox32 added a commit to Fox32/vector_math that referenced this issue Jul 17, 2020
Fox32 added a commit to Fox32/vector_math that referenced this issue Jul 17, 2020
Fox32 added a commit to Fox32/vector_math that referenced this issue Feb 1, 2022
Fox32 added a commit to Fox32/vector_math that referenced this issue Feb 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant