1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <Path Stroke="DimGray" StrokeThickness="3" Name="TubeGuide1" Visibility="Collapsed" >
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigure x:Name="TG1SousSFPStartPoint" StartPoint="0,0" >
<PathFigure.Segments>
<LineSegment x:Name="TG1SousSFPPoint" Point="0,0"/>
</PathFigure.Segments>
</PathFigure>
<PathFigure x:Name="TG1CourbeSFPStartPoint" StartPoint="0,0">
<PathFigure.Segments>
<BezierSegment x:Name="TG1CourbeSFPBezier" Point1="0,0" Point2="0,0" Point3="0,0"/>
</PathFigure.Segments>
</PathFigure>
<PathFigure x:Name="TG1SousSFAStartPoint" StartPoint="0,0">
<PathFigure.Segments>
<LineSegment x:Name="TG1SousSFAPoint" Point="0,0"/>
</PathFigure.Segments>
</PathFigure>
<PathFigure x:Name="TG1CourbeSFAStartPoint" StartPoint="0,0">
<PathFigure.Segments>
<BezierSegment x:Name="TG1CourbeSFABezier" Point1="0,0" Point2="0,0" Point3="0,0"/>
</PathFigure.Segments>
</PathFigure>
<PathFigure x:Name="TG1SousGrilleStartPoint" StartPoint="0,0">
<PathFigure.Segments>
<LineSegment x:Name="TG1SousGrillePoint" Point="0,0"/>
</PathFigure.Segments>
</PathFigure>
<PathFigure x:Name="TG1CourbeGrilleStartPoint" StartPoint="0,0">
<PathFigure.Segments>
<BezierSegment x:Name="TG1CourbeGrilleBezier" Point1="0,0" Point2="0,0" Point3="0,0"/>
</PathFigure.Segments>
</PathFigure>
<PathFigure x:Name="TG1FinStartPoint" StartPoint="0,0">
<PathFigure.Segments>
<LineSegment x:Name="TG1FinPoint" Point="0,0"/>
</PathFigure.Segments>
</PathFigure>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path> |
Partager