meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:design_guide_projects [2020/11/28 02:10]
JSCAD Editor created
en:design_guide_projects [2021/11/07 07:01] (current)
JSCAD Editor
Line 11: Line 11:
     * index.js     * index.js
  
-The 'index' within the project is the entry point of the project. The main function of this piece is to create each of the pieces, move the pieces into position, and return the complete design. And by convention, exports the main function.+The 'index' within the project is the entry point of the project. The main function of the 'index' creates each of the pieces, move the pieces into position, and returns the complete design. And by convention, exports the main function.
  
 <code javascript> <code javascript>
Line 25: Line 25:
   ]   ]
   return [partA, partB, tires]   return [partA, partB, tires]
 +}
 +
 +module.exports = { main }
 +</code>
 +
 +Projects can also be used when working with external formats, such as STL files. This allows designs to include STL meshes just like any other part. The STL file is placed within the project directory just like any other part.
 +
 +  * .../rc-car
 +    * chassis.js
 +    * body.js
 +    * tire.js
 +    * index.js
 +    * rc_receiver.stl
 +
 +And the design is adjusted to include the new part from the STL file.
 +
 +<code javascript>
 +const chassis = require('./chassis')
 +const body = require('./body')
 +const tire = require('./tire')
 +const receiver = require('./rc_receiver.stl')
 +
 +const main = (params) => {
 +  const partA = chassis(params)
 +  const partB = body(params)
 +  const tires = [
 +    ...
 +  ]
 +  return [partA, partB, tires, receiver]
 } }