| 109 | //---------------------------------------------------------------------------- |
| 110 | |
| 111 | bool DepthSortList::getMapping(MatrixF * mat, Box3F * box) |
| 112 | { |
| 113 | // return list transform and bounds in list space...optional |
| 114 | *mat = mMatrix; |
| 115 | mat->inverse(); |
| 116 | box->minExtents.set(-mExtent.x, 0.0f, -mExtent.z); |
| 117 | box->maxExtents.set( mExtent.x, 2.0f * mExtent.y, mExtent.z); |
| 118 | |
| 119 | return true; |
| 120 | } |
| 121 | |
| 122 | //---------------------------------------------------------------------------- |
| 123 | //---------------------------------------------------------------------------- |