Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wildpeaks/proto-thickline
PROTO ThickLine
https://github.com/wildpeaks/proto-thickline
vrml
Last synced: 23 days ago
JSON representation
PROTO ThickLine
- Host: GitHub
- URL: https://github.com/wildpeaks/proto-thickline
- Owner: wildpeaks
- License: mit
- Created: 2018-02-02T17:25:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-04T12:53:52.000Z (almost 7 years ago)
- Last Synced: 2024-11-06T03:11:47.434Z (2 months ago)
- Topics: vrml
- Size: 27.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ThickLine
VRML PROTO (based on `Extrusion`) that generates a 3D line with adjustable thickness.
EXTERNPROTO ThickLine [
exposedField MFVec3f spine
exposedField SFFloat thickness
exposedField SFFloat thicknessTesselation
field SFFloat creaseAngle
field SFBool beginCap
field SFBool endCap
] "proto.ThickLine.wrl#ThickLine"-------------------------------------------------------------------------------
## Property `spine`
Like `Extrusion.spine`, it defines the 3D path of the line.
Definition:
- Field Type: `exposedField`
- Data Type: `MFVec3f`
- Default Value: `[]`-------------------------------------------------------------------------------
## Property `thickness`
Width of the line (bigger number = thicker).
Definition:
- Field Type: `exposedField`
- Data Type: `SFFloat`
- Default Value: `0.1`-------------------------------------------------------------------------------
## Property `thicknessTesselation`
Number of vertices on the extrusion section (bigger number = higher resolution tube).
Definition:
- Field Type: `exposedField`
- Data Type: `SFFloat`
- Default Value: `4`-------------------------------------------------------------------------------
## Property `creaseAngle`
Like `Extrusion.creaseAngle`.
Definition:
- Field Type: `field`
- Data Type: `SFFloat`
- Default Value: `0`-------------------------------------------------------------------------------
## Property `beginCap`
Like `Extrusion.beginCap`.
Definition:
- Field Type: `field`
- Data Type: `SFBool`
- Default Value: `TRUE`-------------------------------------------------------------------------------
## Property `endCap`
Like `Extrusion.endCap`.
Definition:
- Field Type: `field`
- Data Type: `SFBool`
- Default Value: `TRUE`-------------------------------------------------------------------------------