Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
要求我们< b >推荐或找到一个工具、库或喜欢的离线资源< / b >的问题,在Stack Overflow上是不适当的,因为它们往往会吸引有意见的答案和垃圾邮件。相反,描述问题以及为解决问题所做的努力。
Closed 9 years ago.
我将制作一个应用程序,允许用户输入几个参数来布置保龄球,然后显示球上的布局。我已经找到了一些适合的球体数学资源,因此如果我有一个以(0,0,0)为中心的球体,我将能够获得我需要的表面点的值。我需要做的是让库创建:
- A sphere
- Mark points on the surface of the sphere
- Draw lines connecting the points on the sphere (arcs along a great circle - in other words, the shortest distance across the surface of the sphere)
- Super duper bonus Actually be 3D, so the user could pan, zoom, rotate.
Basically, I want to calculate the points, tell the library which ones to draw and which ones to connect with which colors, and then sit back and watch the kudos roll in.
I d like to use .NET 2.0 and WinForms if possible...