
Vector3d.Equals(object obj) defined in terms of Vector3, not Vector3d
Posted Saturday, 26 June, 2010 - 12:14 by anathema| Project: | The Open Toolkit library |
| Version: | 1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | fixed |
Jump to:
Description
public override bool Equals(object obj) { if (!(obj is Vector3)) return false; return this.Equals((Vector3)obj); }


Comments
#1
Thanks, fixed in trunk r2950.
#2