Editing User:Plussai/GSoC 2012 log

From BRL-CAD

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
=Community bonding period=
 
 
 
== 7 May 2012==
 
== 7 May 2012==
 
*build the brl-cad svn on VM successfully.
 
*build the brl-cad svn on VM successfully.
Line 15: Line 13:
 
     ON_BrepTrimArray m_T;//trims
 
     ON_BrepTrimArray m_T;//trims
 
     ON_BrepVertexArray m_V;//vertexs
 
     ON_BrepVertexArray m_V;//vertexs
[[Image:brep.jpg]]   
+
    figure:[http://brlcad.org/w/images/5/5e/Brep.jpg]
figure:[http://brlcad.org/w/images/5/5e/Brep.jpg]
 
  
 
== 9 May 2012 ==
 
== 9 May 2012 ==
Line 43: Line 40:
 
*submit a patch of brep_debug.cpp.check if the index is in the range and string of letter.
 
*submit a patch of brep_debug.cpp.check if the index is in the range and string of letter.
  
=Coding period=
+
== 23 May 2012 ==
==''Week 1''==
 
 
 
=== 21 May 2012 ===
 
*read the code of brep_debug.cpp which has many functions to debug the geometry in  struct of Brep in mged.
 
 
 
=== 23 May 2012 ===
 
 
*update the patch of brep_debug.cpp.add the sub command 'info T','info E' for display the information of trims and edges in brep.Also, make the 'info' dispaly the information in a range of indexed elements for keeping sync with the 'plot'.
 
*update the patch of brep_debug.cpp.add the sub command 'info T','info E' for display the information of trims and edges in brep.Also, make the 'info' dispaly the information in a range of indexed elements for keeping sync with the 'plot'.
  
=== 25 May 2012 ===
+
== 25 May 2012 ==
 
*add a subcommand 'plot SCV' to display nurbs control point net  
 
*add a subcommand 'plot SCV' to display nurbs control point net  
  
=== 27 May 2012 ===
+
== 27 May 2012 ==
 
*waste a lot of time to test the opennurbs' API  of:  
 
*waste a lot of time to test the opennurbs' API  of:  
 
   int CreateMesh(const ON_MeshParameters& mp, ON_SimpleArray<ON_Mesh*>& mesh_list) const;  
 
   int CreateMesh(const ON_MeshParameters& mp, ON_SimpleArray<ON_Mesh*>& mesh_list) const;  
Line 67: Line 58:
 
  }
 
  }
  
==''Week 2''==
+
== 29 May 2012 ==
 
 
=== 29 May 2012 ===
 
 
*do some works on converting nurbs curve and surface to bezier
 
*do some works on converting nurbs curve and surface to bezier
  
=== 31 May 2012 ===
+
== 31 May 2012 ==
 
*do some works on comput the  intersection between  a line  and a bezier curve/surface
 
*do some works on comput the  intersection between  a line  and a bezier curve/surface
 
*some materials: the nurbs book and Curves and Surfaces for Computer Aided Geometric Design: A Practical Guide.
 
*some materials: the nurbs book and Curves and Surfaces for Computer Aided Geometric Design: A Practical Guide.
  
=== 1 June 2012 ===
+
 
 +
== 1 June 2012 ==
 
*implement RT_ADD_VLIST(vhead, pt1, BN_VLIST_POINT_DRAW) in src/libdm/dm-plot.c but it seems that dm-plot.c has nothing relation with the brep_debug.cpp
 
*implement RT_ADD_VLIST(vhead, pt1, BN_VLIST_POINT_DRAW) in src/libdm/dm-plot.c but it seems that dm-plot.c has nothing relation with the brep_debug.cpp
  
=== 2 June 2012 ===
+
== 2 June 2012 ==
 
*implement RT_ADD_VLIST(vhead, pt1, BN_VLIST_POINT_DRAW) in src/libdm/dm-ogl.c and upload the patch.
 
*implement RT_ADD_VLIST(vhead, pt1, BN_VLIST_POINT_DRAW) in src/libdm/dm-ogl.c and upload the patch.
 
*make progress for subcommand 'plot SCV' in mged.The patch can display not only the control net,but the control point.
 
*make progress for subcommand 'plot SCV' in mged.The patch can display not only the control net,but the control point.
  
==''Week 3''==
+
== 4 June 2012 ==
 
 
=== 4 June 2012 ===
 
 
*one step that make 2d trimming curve into 3d can be skip because the BREP struct has the edge in 3d corresponding to the 3d trimming curve.
 
*one step that make 2d trimming curve into 3d can be skip because the BREP struct has the edge in 3d corresponding to the 3d trimming curve.
 
*study the qd tree and kd tree for subdivision of nurbs surface in paper and the approximation error for the subdivision.
 
*study the qd tree and kd tree for subdivision of nurbs surface in paper and the approximation error for the subdivision.
  
=== 6 June 2012 ===
+
== 6 June 2012 ==
 
*figure out the coving triangles to avoid cracks when making boundary curve tessellation.
 
*figure out the coving triangles to avoid cracks when making boundary curve tessellation.
 
*figure out the trimming curve tracing when splitting the trimming curve into bezier patch.(the active edge,active leaftree)
 
*figure out the trimming curve tracing when splitting the trimming curve into bezier patch.(the active edge,active leaftree)
  
=== 8 June 2012 ===
+
== 8 June 2012 ==
 
*read the opennurbs API and find the ON_NurbsCurve::MakePiecewiseBezier() can clamps ends and adds knots so the NURBS curve has bezier spans (all distinct knots have multiplitity = degree) ,the ON_NurbsSurface also has the same member method.It is a better way to convert trimming curve and surface into bezier
 
*read the opennurbs API and find the ON_NurbsCurve::MakePiecewiseBezier() can clamps ends and adds knots so the NURBS curve has bezier spans (all distinct knots have multiplitity = degree) ,the ON_NurbsSurface also has the same member method.It is a better way to convert trimming curve and surface into bezier
 
*read the opennurbs API and find the ON_NurbsCurve::InsertKnot() can make the conversion between Nurbs and Bezier if setting the parameter multiplicity equal to degree.,the ON_NurbsSurface also has the same member method.
 
*read the opennurbs API and find the ON_NurbsCurve::InsertKnot() can make the conversion between Nurbs and Bezier if setting the parameter multiplicity equal to degree.,the ON_NurbsSurface also has the same member method.
  
=== 10 June 2012 ===
+
== 10 June 2012 ==
 
*add 'info TB' 'SB' to display information piecewise bezier of trimcurve and surface.patch has been upload
 
*add 'info TB' 'SB' to display information piecewise bezier of trimcurve and surface.patch has been upload
 
*add 'plot TESS index plotres' to draw the trimesh of a nurbs surface. the tess has not taken apporimmation into consideration and just simply subdivide u,v  into plotres steps;
 
*add 'plot TESS index plotres' to draw the trimesh of a nurbs surface. the tess has not taken apporimmation into consideration and just simply subdivide u,v  into plotres steps;
  
==''Week 4''==
+
== 12 June 2012 ==
 
 
=== 12 June 2012 ===
 
 
*upload the patch to implement the adaptive bezier subdivision and triangle mesh display which includes the function bezierApporixmation(...),bezierSubdivision_kdtree..
 
*upload the patch to implement the adaptive bezier subdivision and triangle mesh display which includes the function bezierApporixmation(...),bezierSubdivision_kdtree..
 
*read opennurbs_ext.cpp,especially figuring out the function of  
 
*read opennurbs_ext.cpp,especially figuring out the function of  
Line 112: Line 98:
 
*SurfaceTree::subdivideSurfaceByKnots and BBNode* SurfaceTree::subdivideSurface can help me to create the kd/qdtree as a represent of bezier subdivision.But the recursion termination condition is different.
 
*SurfaceTree::subdivideSurfaceByKnots and BBNode* SurfaceTree::subdivideSurface can help me to create the kd/qdtree as a represent of bezier subdivision.But the recursion termination condition is different.
  
=== 14 June 2012 ===
+
==14 June 2012 ==
 
*In function of SurfaceTree::subdivideSurface() at src/opennurbs_exp.cpp,line 1528 to 1531:
 
*In function of SurfaceTree::subdivideSurface() at src/opennurbs_exp.cpp,line 1528 to 1531:
 
             const ON_Surface* surf = m_face->SurfaceOf();
 
             const ON_Surface* surf = m_face->SurfaceOf();
Line 122: Line 108:
 
*Read the BBNode structure in opennurbs_exp.cpp, BBNode will be used to represent the node in qd/kd tree and handling the trimcurve.
 
*Read the BBNode structure in opennurbs_exp.cpp, BBNode will be used to represent the node in qd/kd tree and handling the trimcurve.
  
=== 16 June 2012 ===
+
==16 June 2012 ==
 
*upload a patch in opennurbs_ext.cpp
 
*upload a patch in opennurbs_ext.cpp
 
*add three functions below to subdivide bezier,in opennurbs_ext.cpp
 
*add three functions below to subdivide bezier,in opennurbs_ext.cpp
Line 132: Line 118:
 
           BBNode* createBezierTreeNode();
 
           BBNode* createBezierTreeNode();
  
==''Week 5''==
+
==18 June 2014 ==
 
 
=== 18 June 2014 ===
 
 
*compare surface split between   
 
*compare surface split between   
 
             BBNode* subdivideSurfaceToBezier(...)
 
             BBNode* subdivideSurfaceToBezier(...)
Line 144: Line 128:
 
*understand SurfaceTree::subdivideSurface() at src/opennurbs_exp.cpp,line 1528 to 1531, it comes to the same result when replacing localsurf into surf because the localsurf's domain is change along with the split.
 
*understand SurfaceTree::subdivideSurface() at src/opennurbs_exp.cpp,line 1528 to 1531, it comes to the same result when replacing localsurf into surf because the localsurf's domain is change along with the split.
  
=== 20 June 2012 ===
+
==20 June 2012 ==
 
*figure out the functions below in brep_debug.cpp which is used to draw trimmed BBNode of surface.But these functions seem not be able to remark the intersections of BRNode and trimcurve
 
*figure out the functions below in brep_debug.cpp which is used to draw trimmed BBNode of surface.But these functions seem not be able to remark the intersections of BRNode and trimcurve
 
             void drawBBNode(....)
 
             void drawBBNode(....)
Line 156: Line 140:
 
it need to be check again and compute the interections if needed.
 
it need to be check again and compute the interections if needed.
  
=== 22 June 2012 ===
+
==22 June 2012 ==
 
*figure out the functions below in opennurbs_ext.h which can help me to comput the intersection between BBNode and trimcurve.  
 
*figure out the functions below in opennurbs_ext.h which can help me to comput the intersection between BBNode and trimcurve.  
 
       fastf_t BANode<BA>::getCurveEstimateOfU(fastf_t v, fastf_t tol) const
 
       fastf_t BANode<BA>::getCurveEstimateOfU(fastf_t v, fastf_t tol) const
Line 166: Line 150:
 
       sortT(BRNode* first, BRNode* second);
 
       sortT(BRNode* first, BRNode* second);
  
=== 24 June 2012 ===
+
==24 June 2012 ==
 
*implement  TrimNode and TrimLoop to represent the struct of  untrimmed regions in parameter area.some functions included below:
 
*implement  TrimNode and TrimLoop to represent the struct of  untrimmed regions in parameter area.some functions included below:
 
       TrimLoop(ON_Interval m_u,ON_Interval m_v):tol(0.000001);//construct
 
       TrimLoop(ON_Interval m_u,ON_Interval m_v):tol(0.000001);//construct
Line 175: Line 159:
 
       TrimNode* travelLoop(TrimNode* n,int step);//travel from a trimnode to form a close loop
 
       TrimNode* travelLoop(TrimNode* n,int step);//travel from a trimnode to form a close loop
  
==''Week 6''==
+
==26 June 2012 ==
 
 
=== 26 June 2012 ===
 
 
*start to implement  BVNode<BV>::doTrimming function in opennurbs_ext.cpp.
 
*start to implement  BVNode<BV>::doTrimming function in opennurbs_ext.cpp.
 
*implement  getLeavesIntersection(....) to find the bboxings of curveleaves which have intersections with the BBNode in UV region
 
*implement  getLeavesIntersection(....) to find the bboxings of curveleaves which have intersections with the BBNode in UV region
Line 183: Line 165:
 
*solve some special sitiuations: intersection on the conner of bboxing.
 
*solve some special sitiuations: intersection on the conner of bboxing.
  
=== 28 June 2012 ===
+
==28 June 2012 ==
 
*continue to implement  BVNode<BV>::doTrimming function in opennurbs_ext.cpp.
 
*continue to implement  BVNode<BV>::doTrimming function in opennurbs_ext.cpp.
 
*deal with a special situation:  trim curve is collinear with the bboxing's edge. if the start or end point of trim curve is within bboxing's edge, it is regarded as the intersection between edge and trimcurve.
 
*deal with a special situation:  trim curve is collinear with the bboxing's edge. if the start or end point of trim curve is within bboxing's edge, it is regarded as the intersection between edge and trimcurve.
Line 189: Line 171:
 
*link the innerNode in BANode's BBoxing of uv by call the function inline bool TrimLoop::linkOnTrimNode(TrimNode* pre,TrimNode* next)
 
*link the innerNode in BANode's BBoxing of uv by call the function inline bool TrimLoop::linkOnTrimNode(TrimNode* pre,TrimNode* next)
  
=== 30 June 2012 ===
+
==30 June 2012 ==
 
*continue to implement  BVNode<BV>::doTrimming function in opennurbs_ext.cpp.
 
*continue to implement  BVNode<BV>::doTrimming function in opennurbs_ext.cpp.
 
*deal with a special situation:  the BVNode covers some trimcurve's bboxing which is remarked as m_checkTrim, however,  the BVNode has no intersections with any trimcurve. the method which I use may is not precise enough,So I'll try to make a better one.
 
*deal with a special situation:  the BVNode covers some trimcurve's bboxing which is remarked as m_checkTrim, however,  the BVNode has no intersections with any trimcurve. the method which I use may is not precise enough,So I'll try to make a better one.
 
*add two functions for BANode for judging if a point is contained in a BANode
 
*add two functions for BANode for judging if a point is contained in a BANode
  bool containsUV(const ON_2dPoint& uv);
+
bool containsUV(const ON_2dPoint& uv);
  bool containsUVClose(const ON_2dPoint& uv);
+
bool containsUVClose(const ON_2dPoint& uv);
 
*debug for doTrimming() by subdivide  plane surface manually in BBNode* SurfaceTree::subdivideSurface()
 
*debug for doTrimming() by subdivide  plane surface manually in BBNode* SurfaceTree::subdivideSurface()
 
==''Week 7''==
 
 
=== 2 July 2012 ===
 
*continue to implement  BVNode<BV>::doTrimming function in opennurbs_ext.cpp.
 
*deal with a special situation: if a trimcurve is collinear with a edge of BBNode's uv region and a endpoint of the trimcurve is just on the uv region's conner, the conner point will not to be the intersection.
 
*add a flag  'unTrimmed ' in 'TrimLoop' to mark if a BBNode's uv region has been trimmed, situation of trimcurve lies on edge, endpoint just on edge are included;
 
 
=== 4 July 2012 ===
 
*insert adjacent subdivide hit into every BBNode's uv region.
 
*add member var into class BVNode<BV>  and assign these member when subdividing surface
 
    BVNode<BV>* north;
 
    BVNode<BV>* south;
 
    BVNode<BV>* west;
 
    BVNode<BV>* east;
 
    BVNode<BV>* parent;
 
*add member function into class BVNode<BV> to get adjacent node
 
    BVNode<BV>* getAdjacentNorth();
 
    BVNode<BV>* getAdjacentSouth();
 
    BVNode<BV>* getAdjacentWest();
 
    BVNode<BV>* getAdjacentEast();
 
*add member function into class BVNode<BV> to insert adjacent subdivide hit
 
    void insertAdjacentHit();
 
 
=== 6 July 2012 ===
 
*add a trimcurve for ell.brep and hyp.brep manually to test trimming
 
*ell:left:top view,right:left view
 
[[Image:Ell1.png]]  [[Image:Ell2.png]]
 
*ell:left:local view,right:uv region
 
[[Image:Ell3.png]]        [[Image:Ell4.png]]
 
 
*hyp:
 
[[Image:HYP1.png]]        [[Image:HYP2.png]]
 
[[Image:HYP3.png]]        [[Image:HYP4.png]]
 
 
=== 8 July 2012 ===
 
*continue to debug 'doTrimming'.There exists a situation that some trim leafs'  bboxings overlap and it is difficult  to find the  nearest  trim  leaf above a surface leaf's bboxing in uv. Function 'prepTrim' mark the surface leaf in such situation as 'm_checkTrim = true'.But in some cases, the surface leaf is trimmed out.I changed the subdivision depth to 10 manually and tested the rhino0.s in mged.Some surface leaves which should be trimmed out are still remain.So, need a more accuracy method to check it.
 
*image: some BBoxing in uv which should be trimmed are still remain(right bottom conner).
 
[[Image:rhino.png]]        [[Image:rhino1.png]]
 
 
=== 10 July 2012 ===
 
*find a algorithm for 'TrimLoop' triangulation,algorithm has the steps below:
 
a) make the node in 'TrimLoop' to form a linked list.
 
 
b)for each triangle form by p0,p1,p2 successive in linked list,calculate the minimum inside angle.
 
 
c)find the triangle which has the max minimum inside angle, then record  the  triangle and remove the point p1 in the triangle
 
 
d)come to (a) until there only exists three points in the linked list
 
 
=== 12 July 2012 ===
 
*Update my patches.
 
 
==''Week 10''==
 
 
=== 1 Augest 2012 ===
 
*because of pressure of my paper schedule, I need to leave for a long time.I must
 
say sorry that I will not complete the final-evaluation for gsoc.
 
 
==''Week 11''==
 
 
=== 6 Augest 2012 ===
 
*I'v package my patch into three part after cleaning up and adding some comments.
 
I think the subdividion is OK some more test must be done to ensure my trimming algorithm is accurate enough.
 
*because of large amount of code need to be cleaned up and test but time is up, I decide to handle my paper firstly.
 
*But I will come back and complete my work finally.
 

Please note that all contributions to BRL-CAD may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see BRL-CAD:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)