swcad-js 0.10.1 → 0.10.2-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swcad-js",
3
- "version": "0.10.1",
3
+ "version": "0.10.2-dev.0",
4
4
  "description": "Salvador Workshop's JSCAD utilities and toolkit",
5
5
  "workspaces": [
6
6
  "packages/*"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sw-jscad",
3
- "version": "0.10.1",
3
+ "version": "0.10.2-dev.0",
4
4
  "description": "Salvador Workshop's JSCAD utilities and toolkit",
5
5
  "homepage": "",
6
6
  "repository": {
@@ -39,17 +39,35 @@ const init = ({ lib }) => {
39
39
  /** Functions organized in the new style */
40
40
  const swcadJs = {
41
41
  profiles: {
42
+ text: swJsCad.models.profiles.text2d,
42
43
  mesh: swJsCad.models.profiles.mesh2d,
43
44
  foil: swJsCad.models.profiles.foils2d,
44
45
  arch: swJsCad.builders.arches,
45
46
  trim: swJsCad.families.trim,
46
47
  lumber: swJsCad.families.lumber,
47
48
  paper: swJsCad.families.paper,
49
+ connections: swJsCad.models.profiles.connections,
50
+ curves: swJsCad.models.profiles.curves,
51
+ edge: swJsCad.models.profiles.edge,
52
+ frameRect: swJsCad.models.profiles.frameRect,
53
+ reinforcement: swJsCad.models.profiles.reinforcement,
54
+ shapes: {
55
+ ellipse: swJsCad.models.profiles.ellipse,
56
+ octagon: swJsCad.models.profiles.octagon,
57
+ rectangle: swJsCad.models.profiles.rectangle,
58
+ triangle: swJsCad.models.profiles.triangle,
59
+ square: {
60
+ sqCornerCircNotch: swJsCad.models.profiles.sqCornerCircNotch,
61
+ sqCornerCircles: swJsCad.models.profiles.sqCornerCircles,
62
+ }
63
+ }
48
64
  },
49
65
  components: {
66
+ text: swJsCad.models.prefab.text3d,
50
67
  mesh: swJsCad.models.prefab.mesh3d,
51
68
  tile: swJsCad.families.tile,
52
69
  crafts: swJsCad.families.crafts,
70
+ moulding: swJsCad.models.prefab.mouldings,
53
71
  },
54
72
  models: {
55
73
  foil: swJsCad.models.prefab.foils3d,
@@ -66,6 +84,7 @@ const init = ({ lib }) => {
66
84
  constants: swJsCad.core.constants,
67
85
  math: swJsCad.core.maths,
68
86
  geometry: swJsCad.core.geometry,
87
+ extras: swJsCad.utils.extras,
69
88
  transform: swJsCad.utils.transform,
70
89
  specifications: swJsCad.core.specifications,
71
90
  standards: swJsCad.core.standards,