modeling/src/text/index.js

  1. /**
  2. * Texts provide sets of segments for each character or text strings.
  3. * The segments can be used to create outlines for both 2D and 3D geometry.
  4. * Note: Only ASCII characters are supported.
  5. * @module modeling/text
  6. * @example
  7. * const { vectorChar, vectorText } = require('@jscad/modeling').text
  8. */
  9. module.exports = {
  10. vectorChar: require('./vectorChar'),
  11. vectorText: require('./vectorText')
  12. }