| Title: | +, -, and other operators for classes like Point3 |
| Category: | Workflow |
| Status: | Considered |
| Priority: | |
| Posted By: | EPHERE
( Marsel Khadiyev )
|
| Date Created: | 31 May 2009 |
| Description: | Currently the only way to add two IPoint3's is to use IPoint3.Add(...) function, so adding a and b looks like: IPoint3 c = a.Add( b ); A much more natural way to do it would be: IPoint3 c = a + b; |