| 138 | /// This drops the bottom-most row. |
| 139 | void getColumn(S32 col, Point3F *cptr) const; |
| 140 | Point3F getColumn3F(S32 col) const { Point3F ret; getColumn(col,&ret); return ret; } |
| 141 | |
| 142 | /// Set the specified column from a Point4F. |
| 143 | void setColumn(S32 col, const Point4F& cptr); |
no test coverage detected