*Graphic() - outline - body-point
Creates an outline graphic by connecting points.
Syntax
*Graphic(gr_name,"gr_label",OUTLINE, body_1,point_1,point_2 ... , body_2,point_3,point_4, ... )
Arguments
- gr_name
- The variable name of the graphic.
- gr_label
- The descriptive label of the graphic.
- OUTLINE
- This argument indicates the graphic is an outline type.
- body_1, body_2, ...
- The variable names of bodies.
- point_1, point_2, ...
- The variable names of points.
Example
*Point(p1, "point1")
*Point(p2, "point2")
*Body(b1, "Body1", p_cg1)
*Point(p3, "Point3")
*Point(p4, "Point4")
*Body(b2, "Body2", p_cg2)
*Graphic(gr_bar, "Bar", OUTLINE,
b1, p1, p2,
b2, p3, p4)
Context
Comments
The outline primitive belongs to the part attached to body_1.
To avoid the graphic being visible during MotionSolve result animation in HyperView, set the hide_in_post attribute to {{true}}. For example: *Set(gra_link.hide_in_post, true). This option will set the graphic component's visibility to be turned off when the result H3D is loaded in HyperView.