Type: Geometry Hierarchy: Freezable
<ArcSegment
LargeArc="truefalse"
Point="
5,5
"
Size="
10,10
"
SweepFlag="truefalse"
XRotation="
45
" />
or:
<ArcSegment
LargeArc="truefalse"
Size="
10,10
"
SweepFlag="truefalse"
XRotation="
45
">
<ArcSegment.Point>
<Point X="
5
" Y="
5
" />
</ArcSegment.Point>
</ArcSegment>
<ArcSegment .../>
should be a child of
PathFigure
. It represents an
Figure 9-2. ArcSegment
Attributes
|
Type: Geometry
<BezierSegment
Point1="
1,1
"
Point2="
150,50
"
Point3="
140,10
" />
<BezierSegment .../> describes a Bezier curve between two points. Like ArcSegment , BezierSegment must be the child of a PathFigure . Point1 affects the beginning segment of the curve, while Point2 affects the ending segment of the curve. Control points act like magnets, pulling the curve toward them. Figure 9-3 shows the BezierSegment described above. Figure 9-3. BezierSegment
Attributes
|
Type: Geometry <CloseSegment /> <CloseSegment .../> represents the final line of a PathFigure , which joins the figure's last Point to its first Point . |
Type: Geometry
<CombinedGeometry
CombineMode="UnionXorExcludeIntersect" />
<CombinedGeometry .../> combines two Geometry elements as specified by the CombineMode attribute. Attributes
|