| 132 | /// Copy the requested column into a Point4F. |
| 133 | void getColumn(S32 col, Point4F *cptr) const; |
| 134 | Point4F getColumn4F(S32 col) const { Point4F ret; getColumn(col,&ret); return ret; } |
| 135 | |
| 136 | /// Copy the requested column into a Point3F. |
| 137 | /// |
nothing calls this directly
no test coverage detected