****************** General guidelines ****************** Our workflow: ============= #. You have the freedom to code how you like, but follow `pep8 `_. #. Implementing ideas from other add-ons is fine, if you have the appropriate licenses (GPL), written consent or rights. We don't accept unattributed code you didn't write. #. Before you spend a lot of time making something, we recommend you tell us about it beforehand in the Issue Tracker. Sometimes the thing you want to make already exists, or we have plans for it already with placeholder code. #. Brainstorm and discuss solutions. We use the issue tracker a lot and will give our honest opinion and interpretations of new code. We are artists and technical people trying to solve complicated and interesting issues using code and Blender. We care about optimal code but also accept working and novel solutions. #. Test your code, Test your proposed changes. Write automated tests for your code whenever it makes sense. Please refer to `this document `_ for details. Code structure: =============== 1. There is a convention that all classes that are subclasses of blender classes - have to have prefix ``Sv``, ie SvColors. 2. ``sverchok/node_tree.py`` and ``sverchok/utils/nodes_mixins`` contains base classes of nodes. 3. ``sverchok/data_structure.py`` has a lot of function to manipulate with lists. 4. **Utils** folder has: a. CADmodule - to provide lines intersection b. IndexViewerDraw - to provide OpenGL drawing of INDXview node in basics c. sv_bmeshutils - manipulation with Blender builtin mesh data structure d. text_editor_plugins - for sandbox node scripted node (SN) to implement Ctrl+I auto complete function e. text_editor_submenu - templates of SN f. voronoi - for delaunai and voronoi functions of correspond nodes 5. **Node scripts** folder for every template for SN (see utils-e.) 6. **Nodes** folder for categorized nodes. #. to **CHANGE** some node, please, follow next (in case if changes will brock backward compatibility): a. Copy node file to ../old_nodes; b. Change ``bl_idname`` to old_bl_idname + MK2. .. note:: The overview of Sverchok code is really poor.