updates to docs

This commit is contained in:
Mike Molinari 2022-07-19 22:23:11 +00:00 committed by Val Erastov
parent 41432df360
commit 929651f0af
2 changed files with 7 additions and 10 deletions

View file

@ -25,14 +25,12 @@ JSketcher is a **parametric** 2D and 3D CAD modeler written in pure javascript
Please consider supporting this project by becoming a backer
==============
<object type="image/svg+xml" data="https://opencollective.com/jsketcher-ad3d/tiers/backer.svg?avatarHeight=100&width=3000"></object>
<object type="image/svg+xml" data="https://opencollective.com/jsketcher-ad3d/tiers/badge.svg"></object>
<a href="https://opencollective.com/jsketcher-ad3d/"><image src="https://opencollective.com/jsketcher-ad3d/tiers/backer.svg?avatarHeight=300&width=3000"></image><image src="https://opencollective.com/jsketcher-ad3d/tiers/badge.svg"></image></a>
Current Status
==============
JSketcher is a parametric 3d modeler employing a 2D constraint solver for sketches and the feature/history metaphor to build models. The 2D constraint solver is completely written in javascript/typescript and is implemented in both the 3D CAD and the 2D sketcher. Originally developed by xibyte to make models for 3d printing. Today JSketcher provides a rich set of tools for visualizing, selecting/interacting with 3D geometry, tracking and storing model history all built on the foundation of the 2D sketcher engine and employing OpenCascade for solid modeling operations. d
JSketcher is a parametric 3d modeler employing a 2D constraint solver for sketches and the feature/history metaphor to build models. The 2D constraint solver is completely written in javascript/typescript and is implemented in both the 3D CAD and the 2D sketcher. Originally developed by xibyte to make models for 3d printing. Today JSketcher provides a rich set of tools for visualizing, selecting/interacting with 3D geometry, tracking and storing model history all built on the foundation of the 2D sketcher engine and employing OpenCascade for solid modeling operations.
Major Components and features
==============

View file

@ -183,9 +183,6 @@ Special Widgets:
- **[file](#file-widget)**
Special Widgets:
- **[file](#file-widget)**
Example of adding a field to the schema. What ever order you place the items in the schema is the order they will be displayed in the resulting dialog.
```
@ -381,7 +378,9 @@ Allows for text to be added to the dialog with instructions or more sophisticate
```
## file widget
Allows for from the local file system to be selected and the contents be made avaiable to the feature.
Allows for from the local file system to be selected and the contents be made avaiable to the feature.
```
{
type: 'file',
@ -391,10 +390,10 @@ Allows for from the local file system to be selected and the contents be made av
},
```
## paramsInfo tool tip information
The paramsInfo section is used to define a string that shows up when you mouse over a feature from the time line. You can pass in items defined in the schema and use them to form the string template for the tool top text. The tooltip text is displayed when mousing over the feature in the part history.
# paramsInfo tool tip information
The paramsInfo section is used to define a string that shows up when you mouse over a feature from the time line. You can pass in items defined in the schema and use them to form the string template for the tool top text. The tooltip text is displayed when mousing over the feature in the part history.
```
export default {
//. . .