Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一些物体围绕我的 3D 世界旋转。它们中的每一个都有一个BoundingBox与之关联的对象。glRotate()调用和后如何更新边界框值glTranslate()?
BoundingBox
glRotate()
glTranslate()
为此,您必须遍历每个顶点,计算它在世界中的位置(乘以模型视图)并找到每个对象内的最小/最大顶点坐标(就像您第一次计算它时一样)。