CSG Modeling in OpenGL

前端 未结 2 1141
迷失自我
迷失自我 2021-01-28 15:19

I am dealing with Constructive Solid Geometry(CSG) modeling with OpenGL.

I want to know how to implement binary operation. I read something about Gold Feather Algori

2条回答
  •  一个人的身影
    2021-01-28 15:43

    OpenGL will not help you. OpenGL is a rendering library/API. It draws points, lines and triangles; it's up to you to tell it what to draw. OpenGL does not maintain a scene or even has a notion of coherent geometric objects. Hence CSG is not something that goes into OpenGL.

提交回复
热议问题