The Arrow design uses TriangleArrowHead as one of its choices for the arrow at each end. TriangleArrowHead can be a 'triangle' ,'filledTriangle', or a 'filledArrow'.
A dimension line is a thin line, broken in the middle to allow the placement of the dimension value, with an arrow at each end.

Parameter Rules
| vertices: | Array of points to define the shape of the arrow head. |
| Example: | var lgth = 0.125; |
| var wdth = 0.0625; |
| return [ |
| p(-lgth,wdth/2.0,0),p(0,0,0), |
| p(-lgth,-wdth/2.0,0), |
| p(-lgth,wdth/2.0,0)]; |
| position: | A rule that defines a position in 3D space or paper space. |
| Example: | return { origin: p(5, 3, 0, this.parent.transform ) }; |
Mixins
Polyline
PolylineRenderMixin
BaseAssembly
AssemblyRenderMixin
Render3Mixin
FrameMixin
AssemblyMixin
FrameMixin
BaseNode
BaseModel
RULE NAME |
TYPE |
DEFAULTS |
CATEGORY |
FLAGS |
|---|---|---|---|---|
vertices |
array |
[] |
inputs |
Cached lookup |
position |
any |
{ origin: p(0, 0, 0, this.parent.transform ) } |
Position |
Cached |
![]()
Project Example:
In your kBridge Examples Projects folder open the project called ‘DrawingUtilitiesTableDemo’.
Reference Location:
'world.mytable.mysheet.trianglearrowhead'
Link: https://knowledgebridge.engineer/projects
Open the DrawingUtilitiesTableDemo project.
In the TriangleArrowHead / Sheet1 shows a TriangleArrowHead.
