Difference between revisions of "User:Clouddrift/GSoC2014"
From BRL-CAD
Clouddrift (talk | contribs) (→Synopsis) |
Clouddrift (talk | contribs) (→Synopsis) |
||
Line 3: | Line 3: | ||
== Synopsis == | == Synopsis == | ||
− | :BRL-CAD has an extensive n-manifold (NMG) polygonal mesh library presently embedded within LIBRT. N-manifold can provide an arbitrary boundary representation structure. This part in BRL-CAD runs good but not excellent. It is far away from stable and | + | :BRL-CAD has an extensive n-manifold (NMG) polygonal mesh library presently embedded within LIBRT. N-manifold can provide an arbitrary boundary representation structure. This part in BRL-CAD runs good but not excellent. It is far away from stable, rubost and easy-read. Sometimes It also causes some performance problem and some algorithm based on current NMG is inefficient. The purpose of this project is to clean, validate and verify relevant source code about NMG. |
== Detailed description == | == Detailed description == |
Revision as of 12:00, 14 March 2014
Contents
Project Title
- Mesh Library Cleanup
Synopsis
- BRL-CAD has an extensive n-manifold (NMG) polygonal mesh library presently embedded within LIBRT. N-manifold can provide an arbitrary boundary representation structure. This part in BRL-CAD runs good but not excellent. It is far away from stable, rubost and easy-read. Sometimes It also causes some performance problem and some algorithm based on current NMG is inefficient. The purpose of this project is to clean, validate and verify relevant source code about NMG.
Detailed description
The current status of NMG
- Now, this part is mainly located in raytrace.h and nmg.h, and is mixed with other irrelevant structs, macros and functions.
Remove redundant code
- Originally, the NMG primitive is designed and implemented for a stand-alone NMG CAD. But some level of concept can be substituted for by some part in database structure. So they become redundant now.
- 1) The model represents the whole geometry, which is similar to the content of BRL-CAD *.g file.
- 2) The nmgregion is similar to the BRL-CAD region struct.struct.
- 3) Maybe others.
- These structures are invisible for BRL-CAD and so do ray-trace. So it is necessary to assure only one shell in an NMG primitive rather than several.
Extract NMG to be a stand-alone library
- The concept of manifold is critical to many parts of geometry and mathematical physics because it allows more complicated structures to be described and understood in terms of the relatively well-understood way. So it should be combined into a function-independent module. I should check the every lines of code in LIBRT, then move the NMG parts into a new stand-alone library named LIBNMG.
Add comments
- Add some proper comments into nmg.h for helping others being familiar with the API rapidly.
Unit test
- Write some unit test for new ‘LIBNMG’.
Brief Background
- I am a master graduate student in State Key Lab of CAD & CG, School of CS, Zhejiang University, China. I have 3-year work experience in programming a CAD module for an Optical Critical Dimension system in a conductor measurement company using Open Cascade. Now, my main research direction is something about hexahedral mesh.
Why BRL-CAD
- I like this open source CAD system and community. I believe I can learn rich experience and knowledge in connection with CAD from this project and other developers.
Why me
- This project is mainly about NMG mesh that is more or less related to my study and work experience. I am sure I can finish it with high quality in time.