PluginCafe / cinema4d_cpp_sdk

The official C++ example project for the Cinema 4D R19 SDK.
https://developers.maxon.net/
Apache License 2.0
27 stars 15 forks source link

Can cinema4d_cpp_sdk generate 3d models automatically based on the vertexs? #1

Closed giskook closed 6 years ago

giskook commented 9 years ago

Hello, I have a demand.I hope I can generate 3d models automatically based on vertexs.Do cinema4d_cpp_sdk helps? Thanks, zhangkai

Remotion commented 9 years ago

Hi, cinema4d_cpp_sdk is a collection of example / demo plugins for Maxon C4D.

generate 3d models automatically based on vertexs

Do you mean generate polygonal object based on disconnected point cloud ? Any way something like this is not possible with this examples.

Remo

jfyelle commented 9 years ago

Cinema 4D comes with 4 APIs on of which is the C++ SDK. The SDK project on Github is in fact plugin examples making use of the C++ API which is called "framework". As a 3D software, you can define a 3D geometry using vertices. if you want polygons, you will need to either have the information on how the vertices are grouped together as faces, or apply some euristic of your own - ex: schrink-wrap volume, etc. More support on developers.maxon.net

cheers, JF