anathema's picture

Vector3d.Equals(object obj) defined in terms of Vector3, not Vector3d

Project:The Open Toolkit library
Version:1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:fixed
Description
        public override bool Equals(object obj)
        {
            if (!(obj is Vector3))
                return false;
 
            return this.Equals((Vector3)obj);
        }

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
the Fiddler's picture

#1

Status:open» fixed

Thanks, fixed in trunk r2950.

the Fiddler's picture

#2

Version:all versions» 1.x-dev