开发者

Convert 2D to 3D with dimension [closed]

开发者 https://www.devze.com 2023-02-11 08:47 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

in c# how to convert one 2D image to 3D image with dimension? Like this htt开发者_如何学Cp://thorrdynamics.com/images/cam_print.jpg in left side to 3D model in right side. Its possible? Thx for any help


In general, no. You can't take a 2D image, "add a dimension," and display a projection of the resulting object. With just an image, you don't have enough information to say what the object actually looks like. In order to display a projection of a 3D object, you need to know all the vertices that make up the object (the [x,y,z] coordinates of a box's corners, for example) and information that says how those vertices are connected to each other (the edges). With that information, you can create a projection of the object from any angle, although doing so is non-trivial.

Look into Wireframe models and 3D modeling for more information.

0

精彩评论

暂无评论...
验证码 换一张
取 消