User:GregoryLi/GSoC2022/DevLog
From BRL-CAD
Contents
- 1 Development Logs
- 2 Community Bonding Period
- 3 Work Period
- 3.1 Wednesday, June 15, 2022
- 3.2 Thursday, June 16, 2022
- 3.3 Friday, June 17, 2022
- 3.4 Saturday, June 18, 2022
- 3.5 Monday, June 20, 2022
- 3.6 Tuesday, June 21, 2022
- 3.7 Wednesday, June 22, 2022
- 3.8 Thursday, June 23, 2022
- 3.9 Friday, June 24, 2022
- 3.10 Monday, June 27, 2022
- 3.11 Tuesday, June 28, 2022
- 3.12 Wednesday, June 29, 2022
- 3.13 Thursday, June 30, 2022
- 3.14 Friday, July 1, 2022
- 3.15 Monday, July 4, 2022
- 3.16 Tuesday, July 5, 2022
- 3.17 Wednesday, July 6, 2022
- 3.18 Thursday, July 7, 2022
- 3.19 Monday, July 11, 2022
- 3.20 Tuesday, July 12, 2022
- 3.21 Wednesday, July 13, 2022
- 3.22 Thursday, July 14, 2022
- 3.23 Friday, July 15, 2022
Development Logs
Community Bonding Period
- familiar with arb8 convert to brep code
- Read BRL-CAD NURBS Boolean Evaluation Development Guide.
- Look into arb8_brep and brep_simple.
- Test converting arb8 to brep.
Work Period
Wednesday, June 15, 2022
- Test converting arb8 into brep format with non-planar faces. -- get the differences of the output of them, but the result of brep_simple.cpp seems confusing.
- Compare codes of brep_simple.cpp and arb8_brep.cpp. -- mastered brep_simple
- Replace the input data in brep_simple with arb8. -- a beginning
Thursday, June 16, 2022
- Run and analyze the result of examples about brep, record errors found.
- Write one example about converting arb8 into brep. -- about 75% completion
Friday, June 17, 2022
- Write one example about converting arb8 into brep. -- accomplish
- Read code of current examples about creating and processing object.
Saturday, June 18, 2022
- Read code of OpenNURBS.
- Read code and docs about brep.
Monday, June 20, 2022
- Test simple cases of boolean then brep(arb intersection).
- Read code of OpenNURBS.
- Reorganize code about example.
Tuesday, June 21, 2022
- Test simple cases of boolean then brep(face intersection).
- Read docs about previous Brep work.
Wednesday, June 22, 2022
- Learn about nurb surface usage.(face_g_snurb)
- Write one project about testing brep simple cases. -- about 65% completion
Thursday, June 23, 2022
- Write one project about testing brep simple cases. -- complete
- Reading docs and codes about brep.
Friday, June 24, 2022
- Test surface interesct cases.
- Reading docs and codes about brep.
Monday, June 27, 2022
- Read surfaceinteresct project and try to debug
- Read codes related to brep(rt_comb_brep ON_Boolean etc)
Tuesday, June 28, 2022
- Read codes related to brep and try debugging
Wednesday, June 29, 2022
- Reorganize and test brep_arbintersection project
Thursday, June 30, 2022
- Compare the code stack difference between archer and my test case about _brep_cmd_brep
Friday, July 1, 2022
- Compare the code stack difference between archer and my test case about _brep_cmd_brep
- Rewrite brep test case
Monday, July 4, 2022
- Solve build errors after git pull.
- ebug brep using file output system.
Tuesday, July 5, 2022
- Debug brep using file output system.
Wednesday, July 6, 2022
- Ditto
Thursday, July 7, 2022
- Solve the inconsistent problem about converting brep in test case and Archer
- Debug brep using file output system.
Monday, July 11, 2022
- Reread NURBS Development Guide
Tuesday, July 12, 2022
- Debug: tracking and call stack from test_UNION into ON_Boolean
- Find multiple outputs with the same operation among three BRL-CAD versions:
- current main branch -- missing faces - BRL-CAD 7.32.6 release package -- correct - project build with BRL-CAD 7.32.6 source code -- crashed
Wednesday, July 13, 2022
- Compare differences between different branch and commits
- project build with BRL-CAD 7.32.6 source code in RELEASE mode - correct for arb_4.r test case, error for arb_3.r - project build with BRL-CAD 7.32.6 source code in DEBUG mode - crash - current main branch -- error for arb_3.r/arb_4.r - initial commit of RELEASE branch -- correct for arb_4.r test case, error for arb_3.r
Thursday, July 14, 2022
- Find where introduced the error in main branch.
- Test and compare different brep cases cross different code versions.
Friday, July 15, 2022
- Find where introduced the error in main branch using bisect. --around *1583360* commit
- Read codes about primitives convert to brep.