*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.
Data type: varname
gr_label
The descriptive label of the graphic.
Data type: label
OUTLINE
This argument indicates the graphic is an outline type.
body_1, body_2, ...
The variable names of bodies.
Data type: Body
point_1, point_2, ...
The variable names of points.
Data type: Point

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

*BeginMdl()

*DefineAnalysis()

*DefineGraphic()

*DefineSystem()

Comments

The outline primitive belongs to the part attached to body_1.