diff --git a/rocolib/builders/BoatBaseWithDCMount.py b/rocolib/builders/BoatBaseWithDCMount.py deleted file mode 100644 index 994e8b4767e18c0627f3d5fb7fe54bd91d26e03f..0000000000000000000000000000000000000000 --- a/rocolib/builders/BoatBaseWithDCMount.py +++ /dev/null @@ -1,25 +0,0 @@ -from rocolib.api.components.Component import Component -from rocolib.api.Function import Function - -c = Component() - -c.addSubcomponent("boat", "BoatBase", inherit=("depth", "length","width")) -c.addSubcomponent("dcMount", "DCMotorMount", inherit=("supportLength", "mountWidth")) - -c.addConstraint(("dcMount", "mountWidth"), ("boat", "width")) -c.addConstraint(("dcMount", "supportLength"), ("boat", "depth")) - -for i in range(2): - c.addSubcomponent("split%d" %i, "SplitEdge") - c.addConstraint(("split%d" %i, "toplength"), "length", "(x,)") - -c.addConstraint(("split0", "botlength"), "length", "(1/3*x-10, 10, 2/3*x)") -c.addConstraint(("split1", "botlength"), "length", "(2/3*x,10, 1/3*x-10)") - -c.addConnection(("boat", "redge"), ("split0", "topedge0")) -c.addConnection(("boat", "ledge"), ("split1", "topedge0")) - -c.addConnection(("rightArm", "l"), ("split0", "botedge1"), angle=-180) -c.addConnection(("leftArm", "l"), ("split1", "botedge1"), tabWidth=5) - -c.toLibrary("BoatBaseFlat") diff --git a/rocolib/builders/BoatWithDCMountBuilder.py b/rocolib/builders/BoatWithDCMountBuilder.py new file mode 100644 index 0000000000000000000000000000000000000000..ed7e4223e6c04bf6db5130ace14ee7ead84642dd --- /dev/null +++ b/rocolib/builders/BoatWithDCMountBuilder.py @@ -0,0 +1,29 @@ +from rocolib.api.components.Component import Component +from rocolib.api.Function import Function + +c = Component() + +c.addSubcomponent("boat", "BoatBase", inherit=True, prefix=None) +c.inheritAllInterfaces("boat") +c.addSubcomponent("dcMount", "DCMotorMount", inherit=True) + +c.addConstraint(("dcMount", "mountWidth"), "boat.width") +c.addConstraint(("dcMount", "supportLength"), "boat.depth") + +c.addParameter("topDistance", 50, paramType="length") #@ankur make this half the boat.length +c.addParameter("botDistance", 50, paramType="length") + +for i in range(2): + c.addSubcomponent("split%d" %i, "SplitEdge") + c.addConstraint(("split%d" %i, "toplength"), "boat.length", "(x,)") + +c.addConstraint(("split0", "botlength"), ("topDistance", "botDistance"), "(x[0]-5, 10, x[1]-5)") +c.addConstraint(("split1", "botlength"), ("topDistance", "botDistance"), "(x[1]-5, 10, x[0]-5)") + +c.addConnection(("boat", "portedge"), ("split0", "topedge0")) +c.addConnection(("boat", "staredge"), ("split1", "topedge0")) + +c.addConnection(("dcMount","rightArmInterface"), ("split0", "botedge1"), angle=-180) +c.addConnection(("dcMount","rightArmInterface"), ("split1", "botedge1"), tabWidth=5) + +c.toLibrary("BoatWithDCMount") diff --git a/rocolib/builders/DCMotorMountBuilder.py b/rocolib/builders/DCMotorMountBuilder.py index a9e65245835ba7cc15f6b04653834965cebc55b7..1394269c5bb9b2d77a5d2af874a0b849d9ec5d37 100644 --- a/rocolib/builders/DCMotorMountBuilder.py +++ b/rocolib/builders/DCMotorMountBuilder.py @@ -42,4 +42,7 @@ c.addConstConstraint(("dcMount", "depth"), 10) c.join(("dcMount", "topedge1"), ("leftArm", "r")) #l/r, not t/b c.join(("dcMount", "botedge1"), ("rightArm", "r")) +c.inheritInterface("leftArmInterface", ("leftArm", "l")) +c.inheritInterface("rightArmInterface", ("rightArm", "l")) + c.toLibrary("DCMotorMount") diff --git a/rocolib/library/BoatWithDCMount.yaml b/rocolib/library/BoatWithDCMount.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7d26e88d4697adb215189f60fcc8e3aacea7cf50 --- /dev/null +++ b/rocolib/library/BoatWithDCMount.yaml @@ -0,0 +1,133 @@ +connections: + connection0: + - - boat + - portedge + - - split0 + - topedge0 + - {} + connection1: + - - boat + - staredge + - - split1 + - topedge0 + - {} + connection2: + - &id001 + - dcMount + - rightArmInterface + - - split0 + - botedge1 + - angle: -180 + connection3: + - *id001 + - - split1 + - botedge1 + - tabWidth: 5 +interfaces: + boat.portedge: + interface: portedge + subcomponent: boat + boat.staredge: + interface: staredge + subcomponent: boat +parameters: + boat.depth: + defaultValue: 20 + spec: + minValue: 0 + units: mm + valueType: (float, int) + boat.length: + defaultValue: 100 + spec: + minValue: 0 + units: mm + valueType: (float, int) + boat.width: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + botDistance: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + bow.point: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + dcMount.motorHeight: + defaultValue: 8 + spec: + parameterType: length + dcMount.motorWidth: + defaultValue: 8 + spec: + parameterType: length + stern.point: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + topDistance: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) +source: ../builders/BoatWithDCMountBuilder.py +subcomponents: + boat: + classname: BoatBase + kwargs: {} + parameters: + boat.depth: + parameter: boat.depth + boat.length: + parameter: boat.length + boat.width: + parameter: boat.width + bow.point: + parameter: bow.point + stern.point: + parameter: stern.point + dcMount: + classname: DCMotorMount + kwargs: {} + parameters: + motorHeight: + parameter: dcMount.motorHeight + motorWidth: + parameter: dcMount.motorWidth + mountWidth: + parameter: boat.width + supportLength: + parameter: boat.depth + split0: + classname: SplitEdge + kwargs: {} + parameters: + botlength: + function: (x[0]-5, 10, x[1]-5) + parameter: &id002 + - topDistance + - botDistance + toplength: + function: (x,) + parameter: boat.length + split1: + classname: SplitEdge + kwargs: {} + parameters: + botlength: + function: (x[1]-5, 10, x[0]-5) + parameter: *id002 + toplength: + function: (x,) + parameter: boat.length diff --git a/rocolib/library/DCMotorMount.yaml b/rocolib/library/DCMotorMount.yaml index 0eee26346ad513da44410c8fded177b5db28aa8f..bb8982d0e17690089e8d42f1951446b5255a0fdb 100644 --- a/rocolib/library/DCMotorMount.yaml +++ b/rocolib/library/DCMotorMount.yaml @@ -29,7 +29,13 @@ connections: - - rightArm - r - {} -interfaces: {} +interfaces: + leftArmInterface: + interface: l + subcomponent: leftArm + rightArmInterface: + interface: l + subcomponent: rightArm parameters: motorHeight: defaultValue: 8 diff --git a/rocolib/output/BoatWithDCMount/graph-anim.svg b/rocolib/output/BoatWithDCMount/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..0f09577f03fab17fb8b8e9f71206838651d81a9e --- /dev/null +++ b/rocolib/output/BoatWithDCMount/graph-anim.svg @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="utf-8" ?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 242.733402 207.703296" width="242.733402mm"> + <defs/> + <line opacity="0.5" stroke="#0000ff" x1="219.99999999999997" x2="219.99999999999997" y1="53.851648000000004" y2="153.851648"/> + <line opacity="0.5" stroke="#0000ff" x1="169.99999999999997" x2="169.99999999999997" y1="53.851648000000004" y2="153.851648"/> + <line opacity="0.12111894159084342" stroke="#0000ff" x1="194.99999999999997" x2="169.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/> + <line opacity="0.12111894159084342" stroke="#0000ff" x1="219.99999999999997" x2="194.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/> + <line opacity="0.4468854644851019" stroke="#0000ff" x1="194.99999999999997" x2="169.99999999999997" y1="-7.134504187433777e-08" y2="53.851648000000004"/> + <line stroke="#000000" x1="161.51320686867427" x2="155.7566034343371" y1="33.97156470018156" y2="39.81150361779138"/> + <line stroke="#000000" x1="194.99999999999997" x2="161.51320686867427" y1="-7.13450560851925e-08" y2="33.97156470018156"/> + <line opacity="1.0" stroke="#0000ff" x1="169.99999999999997" x2="155.7566034343371" y1="53.851648000000004" y2="39.81150361779138"/> + <line opacity="1.0" stroke="#ff0000" x1="169.99999999999997" x2="149.99999999999994" y1="53.851648000000004" y2="45.6514425354012"/> + <line stroke="#000000" x1="155.7566034343371" x2="149.99999999999994" y1="39.81150361779138" y2="45.6514425354012"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="149.99999999999994" x2="149.99999999999994" y1="53.851648000000004" y2="45.651442535401195"/> + <line opacity="0.1475836176504332" stroke="#0000ff" x1="169.99999999999997" x2="149.99999999999994" y1="53.851648000000004" y2="53.851648000000004"/> + <line stroke="#000000" x1="147.26659817846704" x2="149.99999999999994" y1="53.85164800000001" y2="53.85164800000001"/> + <line stroke="#000000" x1="147.26659817846704" x2="147.26659817846704" y1="45.6514425354012" y2="53.85164800000001"/> + <line stroke="#000000" x1="149.99999999999994" x2="147.26659817846704" y1="45.6514425354012" y2="45.6514425354012"/> + <line opacity="0.1475836176504332" stroke="#0000ff" x1="149.99999999999997" x2="170.0" y1="153.851648" y2="153.851648"/> + <line opacity="1.0" stroke="#ff0000" x1="149.99999999999997" x2="170.0" y1="162.05185346459885" y2="153.851648"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="149.99999999999997" x2="149.99999999999997" y1="162.05185346459885" y2="153.851648"/> + <line stroke="#000000" x1="149.99999999999997" x2="155.75660343433714" y1="162.05185346459885" y2="167.89179238220865"/> + <line opacity="1.0" stroke="#0000ff" x1="155.75660343433714" x2="170.0" y1="167.89179238220865" y2="153.851648"/> + <line opacity="0.4468854644851019" stroke="#0000ff" x1="195.0" x2="170.0" y1="207.70329607134505" y2="153.851648"/> + <line stroke="#000000" x1="161.51320686867436" x2="195.0" y1="173.73173129981845" y2="207.70329607134505"/> + <line stroke="#000000" x1="155.75660343433714" x2="161.51320686867436" y1="167.89179238220865" y2="173.73173129981845"/> + <line opacity="0.12111894159084342" stroke="#0000ff" x1="170.0" x2="195.0" y1="153.851648" y2="153.851648"/> + <line opacity="0.12111894159084342" stroke="#0000ff" x1="195.0" x2="219.99999999999997" y1="153.851648" y2="153.851648"/> + <line opacity="0.4468854644851019" stroke="#0000ff" x1="195.0" x2="219.99999999999997" y1="207.70329607134505" y2="153.851648"/> + <line stroke="#000000" x1="228.48679313132564" x2="234.2433965656628" y1="173.73173129981845" y2="167.89179238220862"/> + <line stroke="#000000" x1="195.0" x2="228.48679313132564" y1="207.70329607134505" y2="173.73173129981845"/> + <line opacity="1.0" stroke="#0000ff" x1="219.99999999999997" x2="234.2433965656628" y1="153.851648" y2="167.89179238220862"/> + <line opacity="1.0" stroke="#ff0000" x1="219.99999999999997" x2="239.99999999999997" y1="153.851648" y2="162.05185346459876"/> + <line stroke="#000000" x1="234.2433965656628" x2="239.99999999999997" y1="167.89179238220862" y2="162.05185346459876"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="162.05185346459876"/> + <line opacity="0.1475836176504332" stroke="#0000ff" x1="219.99999999999997" x2="239.99999999999997" y1="153.851648" y2="153.85164799999998"/> + <line stroke="#000000" x1="242.7334018215329" x2="239.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/> + <line stroke="#000000" x1="242.7334018215329" x2="242.7334018215329" y1="162.05185346459876" y2="153.85164799999998"/> + <line stroke="#000000" x1="239.99999999999997" x2="242.7334018215329" y1="162.05185346459876" y2="162.05185346459876"/> + <line opacity="0.1475836176504332" stroke="#0000ff" x1="239.99999999999991" x2="219.99999999999991" y1="53.851648" y2="53.85164800000001"/> + <line opacity="1.0" stroke="#ff0000" x1="239.99999999999991" x2="219.99999999999991" y1="45.651442535401195" y2="53.85164800000001"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="239.99999999999991" x2="239.99999999999991" y1="45.651442535401195" y2="53.851648"/> + <line stroke="#000000" x1="239.99999999999991" x2="234.24339656566272" y1="45.651442535401195" y2="39.81150361779138"/> + <line opacity="1.0" stroke="#0000ff" x1="234.24339656566272" x2="219.99999999999991" y1="39.81150361779138" y2="53.85164800000001"/> + <line opacity="0.4468854644851019" stroke="#0000ff" x1="194.9999999999999" x2="219.99999999999991" y1="-7.134499924177363e-08" y2="53.85164800000002"/> + <line stroke="#000000" x1="228.48679313132556" x2="194.9999999999999" y1="33.971564700181574" y2="-7.134499924177363e-08"/> + <line stroke="#000000" x1="234.24339656566272" x2="228.48679313132556" y1="39.811503617791395" y2="33.971564700181574"/> + <line stroke="#000000" x1="242.73340182153285" x2="239.99999999999991" y1="45.651442535401195" y2="45.651442535401195"/> + <line stroke="#000000" x1="242.73340182153285" x2="242.73340182153285" y1="53.851648000000004" y2="45.651442535401195"/> + <line stroke="#000000" x1="239.99999999999991" x2="242.73340182153285" y1="53.851648000000004" y2="53.851648000000004"/> + <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999991" y1="138.85164799999998" y2="53.851648"/> + <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="148.851648" y2="138.85164799999998"/> + <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="148.851648"/> + <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/> + <line stroke="#000000" x1="239.99999999999991" x2="239.99999999999991" y1="53.851648" y2="53.851648"/> + <line stroke="#000000" x1="147.26659817846706" x2="149.99999999999997" y1="162.05185346459885" y2="162.05185346459885"/> + <line stroke="#000000" x1="147.26659817846706" x2="147.26659817846706" y1="153.851648" y2="162.05185346459885"/> + <line stroke="#000000" x1="149.99999999999997" x2="147.26659817846706" y1="153.851648" y2="153.851648"/> + <line stroke="#000000" x1="149.99999999999997" x2="149.99999999999997" y1="148.85164800000004" y2="153.851648"/> + <line opacity="1.0" stroke="#ff0000" x1="149.99999999999997" x2="149.99999999999997" y1="138.85164800000004" y2="148.85164800000004"/> + <line stroke="#000000" x1="149.99999999999994" x2="149.99999999999997" y1="53.851648000000004" y2="138.85164800000004"/> + <line stroke="#000000" x1="149.99999999999994" x2="149.99999999999994" y1="53.851648000000004" y2="53.851648000000004"/> + <line stroke="#000000" x1="149.99999999999997" x2="149.99999999999997" y1="153.851648" y2="153.851648"/> + <line stroke="#000000" x1="99.99999999999999" x2="149.99999999999997" y1="148.85164800000004" y2="148.85164800000004"/> + <line stroke="#000000" x1="149.99999999999997" x2="99.99999999999999" y1="138.85164800000004" y2="138.85164800000004"/> + <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="99.99999999999999" y1="138.85164800000004" y2="138.85164800000004"/> + <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="100.0" y1="148.85164800000004" y2="148.85164800000004"/> + <line stroke="#000000" x1="50.0" x2="0.0" y1="138.85164800000004" y2="138.85164800000007"/> + <line stroke="#000000" x1="0.0" x2="50.0" y1="148.85164800000007" y2="148.85164800000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="138.85164800000007" y2="148.85164800000007"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="108.85164800000004" y2="138.85164800000004"/> + <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="99.99999999999999" y1="108.85164800000004" y2="108.85164800000003"/> + <line stroke="#000000" x1="100.0" x2="99.99999999999999" y1="138.85164800000004" y2="108.85164800000003"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="98.85164800000004" y2="108.85164800000004"/> + <line stroke="#000000" x1="100.0" x2="50.0" y1="98.85164800000003" y2="98.85164800000004"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="108.85164800000003" y2="98.85164800000003"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="148.85164800000004" y2="178.85164800000004"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="178.85164800000004" y2="148.85164800000004"/> + <line opacity="0.5" stroke="#0000ff" x1="100.0" x2="50.0" y1="178.85164800000004" y2="178.85164800000004"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="188.85164800000004" y2="178.85164800000004"/> + <line stroke="#000000" x1="50.0" x2="100.0" y1="188.85164800000004" y2="188.85164800000004"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="178.85164800000004" y2="188.85164800000004"/> + <line stroke="#888888" x1="161.40786804847943" x2="159.13799662747846" y1="37.35482121234262" y2="39.65755243235412"/> + <line stroke="#888888" x1="159.13799662747846" x2="158.78191171333694" y1="39.65755243235412" y2="39.306548822798916"/> + <line stroke="#888888" x1="158.78191171333694" x2="161.05178313433782" y1="39.306548822798916" y2="37.003817602787414"/> + <line stroke="#888888" x1="161.05178313433782" x2="161.40786804847943" y1="37.003817602787414" y2="37.35482121234262"/> + <line stroke="#888888" x1="147.94994863385025" x2="149.31664954461675" y1="48.38484435693414" y2="48.38484435693414"/> + <line stroke="#888888" x1="149.31664954461675" x2="149.31664954461675" y1="48.38484435693414" y2="51.118246178467075"/> + <line stroke="#888888" x1="149.31664954461675" x2="147.94994863385025" y1="51.118246178467075" y2="51.118246178467075"/> + <line stroke="#888888" x1="159.13799662747854" x2="161.40786804847946" y1="168.0457435676459" y2="170.3484747876574"/> + <line stroke="#888888" x1="161.40786804847946" x2="161.05178313433788" y1="170.3484747876574" y2="170.69947839721263"/> + <line stroke="#888888" x1="161.05178313433788" x2="158.78191171333697" y1="170.69947839721263" y2="168.39674717720112"/> + <line stroke="#888888" x1="158.78191171333697" x2="159.13799662747854" y1="168.39674717720112" y2="168.0457435676459"/> + <line stroke="#888888" x1="228.5921319515205" x2="230.86200337252146" y1="170.34847478765738" y2="168.04574356764587"/> + <line stroke="#888888" x1="230.86200337252146" x2="231.21808828666303" y1="168.04574356764587" y2="168.3967471772011"/> + <line stroke="#888888" x1="231.21808828666303" x2="228.9482168656621" y1="168.3967471772011" y2="170.69947839721257"/> + <line stroke="#888888" x1="228.9482168656621" x2="228.5921319515205" y1="170.69947839721257" y2="170.34847478765738"/> + <line stroke="#888888" x1="242.0500513661497" x2="240.68335045538322" y1="159.31845164306583" y2="159.31845164306583"/> + <line stroke="#888888" x1="240.68335045538322" x2="240.68335045538322" y1="159.31845164306583" y2="156.5850498215329"/> + <line stroke="#888888" x1="240.68335045538322" x2="242.0500513661497" y1="156.5850498215329" y2="156.5850498215329"/> + <line stroke="#888888" x1="230.86200337252137" x2="228.59213195152043" y1="39.65755243235414" y2="37.354821212342635"/> + <line stroke="#888888" x1="228.59213195152043" x2="228.94821686566198" y1="37.354821212342635" y2="37.003817602787414"/> + <line stroke="#888888" x1="228.94821686566198" x2="231.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/> + <line stroke="#888888" x1="231.21808828666295" x2="230.86200337252137" y1="39.306548822798916" y2="39.65755243235414"/> + <line stroke="#888888" x1="242.05005136614963" x2="240.68335045538316" y1="51.11824617846707" y2="51.11824617846707"/> + <line stroke="#888888" x1="240.68335045538316" x2="240.68335045538316" y1="51.11824617846707" y2="48.38484435693413"/> + <line stroke="#888888" x1="240.68335045538316" x2="242.05005136614963" y1="48.38484435693413" y2="48.38484435693413"/> + <line stroke="#888888" x1="147.94994863385028" x2="149.31664954461675" y1="156.58504982153295" y2="156.58504982153295"/> + <line stroke="#888888" x1="149.31664954461675" x2="149.31664954461675" y1="156.58504982153295" y2="159.31845164306588"/> + <line stroke="#888888" x1="149.31664954461675" x2="147.94994863385028" y1="159.31845164306588" y2="159.31845164306588"/> + <line stroke="#888888" x1="71.0" x2="71.0" y1="117.85164800000001" y2="109.85164800000001"/> + <line stroke="#888888" x1="71.0" x2="79.0" y1="109.85164800000001" y2="109.85164800000001"/> + <line stroke="#888888" x1="79.0" x2="79.0" y1="109.85164800000001" y2="117.85164800000001"/> + <line stroke="#888888" x1="79.0" x2="71.0" y1="117.85164800000001" y2="117.85164800000001"/> + <line stroke="#888888" x1="83.58333333333334" x2="66.4166666666667" y1="106.60164800000003" y2="106.60164800000004"/> + <line stroke="#888888" x1="66.4166666666667" x2="66.4166666666667" y1="106.60164800000004" y2="106.10164800000004"/> + <line stroke="#888888" x1="66.4166666666667" x2="83.58333333333334" y1="106.10164800000004" y2="106.10164800000003"/> + <line stroke="#888888" x1="83.58333333333334" x2="83.58333333333334" y1="106.10164800000003" y2="106.60164800000003"/> + <line stroke="#888888" x1="71.00000000000001" x2="71.00000000000001" y1="177.85164800000004" y2="169.851648"/> + <line stroke="#888888" x1="71.00000000000001" x2="79.00000000000001" y1="169.851648" y2="169.851648"/> + <line stroke="#888888" x1="79.00000000000001" x2="79.00000000000001" y1="169.851648" y2="177.85164800000004"/> + <line stroke="#888888" x1="79.00000000000001" x2="71.00000000000001" y1="177.85164800000004" y2="177.85164800000004"/> + <line stroke="#888888" x1="66.66666666666666" x2="61.666666666666664" y1="186.351648" y2="186.351648"/> + <line stroke="#888888" x1="61.666666666666664" x2="66.66666666666666" y1="186.351648" y2="181.351648"/> + <line stroke="#888888" x1="66.66666666666666" x2="83.33333333333334" y1="181.351648" y2="181.351648"/> + <line stroke="#888888" x1="83.33333333333334" x2="88.33333333333334" y1="181.351648" y2="186.351648"/> + <line stroke="#888888" x1="88.33333333333334" x2="83.33333333333334" y1="186.351648" y2="186.351648"/> +</svg> diff --git a/rocolib/output/BoatWithDCMount/graph-autofold-default.dxf b/rocolib/output/BoatWithDCMount/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..d782c14efd44209d0f498fc3e85b6c290397dab3 --- /dev/null +++ b/rocolib/output/BoatWithDCMount/graph-autofold-default.dxf @@ -0,0 +1,3316 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +13 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +21.801409486351815 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +80.43938360731835 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-174 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +26.565051177077976 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +219.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +169.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +21.801409486351815 + 10 +194.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +169.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +21.801409486351815 + 10 +219.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +194.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +80.43938360731835 + 10 +194.99999999999997 + 20 +-7.134504187433777e-08 + 30 +0.0 + 11 +169.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +161.51320686867427 + 20 +33.97156470018156 + 30 +0.0 + 11 +155.7566034343371 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +194.99999999999997 + 20 +-7.13450560851925e-08 + 30 +0.0 + 11 +161.51320686867427 + 21 +33.97156470018156 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +155.7566034343371 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +155.7566034343371 + 20 +39.81150361779138 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +147.26659817846704 + 20 +53.85164800000001 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +147.26659817846704 + 20 +45.6514425354012 + 30 +0.0 + 11 +147.26659817846704 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.99999999999994 + 20 +45.6514425354012 + 30 +0.0 + 11 +147.26659817846704 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +155.75660343433714 + 21 +167.89179238220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +155.75660343433714 + 20 +167.89179238220865 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +80.43938360731835 + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +161.51320686867436 + 20 +173.73173129981845 + 30 +0.0 + 11 +195.0 + 21 +207.70329607134505 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +155.75660343433714 + 20 +167.89179238220865 + 30 +0.0 + 11 +161.51320686867436 + 21 +173.73173129981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +21.801409486351815 + 10 +170.0 + 20 +153.851648 + 30 +0.0 + 11 +195.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +21.801409486351815 + 10 +195.0 + 20 +153.851648 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +80.43938360731835 + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.48679313132564 + 20 +173.73173129981845 + 30 +0.0 + 11 +234.2433965656628 + 21 +167.89179238220862 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +228.48679313132564 + 21 +173.73173129981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +234.2433965656628 + 21 +167.89179238220862 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +234.2433965656628 + 20 +167.89179238220862 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +242.7334018215329 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +242.7334018215329 + 20 +162.05185346459876 + 30 +0.0 + 11 +242.7334018215329 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +239.99999999999997 + 20 +162.05185346459876 + 30 +0.0 + 11 +242.7334018215329 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +239.99999999999991 + 20 +53.851648 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +234.24339656566272 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +234.24339656566272 + 20 +39.81150361779138 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +80.43938360731835 + 10 +194.9999999999999 + 20 +-7.134499924177363e-08 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.48679313132556 + 20 +33.971564700181574 + 30 +0.0 + 11 +194.9999999999999 + 21 +-7.134499924177363e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +234.24339656566272 + 20 +39.811503617791395 + 30 +0.0 + 11 +228.48679313132556 + 21 +33.971564700181574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +242.73340182153285 + 20 +45.651442535401195 + 30 +0.0 + 11 +239.99999999999991 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +242.73340182153285 + 20 +53.851648000000004 + 30 +0.0 + 11 +242.73340182153285 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +239.99999999999991 + 20 +53.851648000000004 + 30 +0.0 + 11 +242.73340182153285 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +239.99999999999997 + 20 +138.85164799999998 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +239.99999999999997 + 20 +148.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +138.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +148.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +239.99999999999991 + 20 +53.851648 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +147.26659817846706 + 20 +162.05185346459885 + 30 +0.0 + 11 +149.99999999999997 + 21 +162.05185346459885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +147.26659817846706 + 20 +153.851648 + 30 +0.0 + 11 +147.26659817846706 + 21 +162.05185346459885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +147.26659817846706 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.99999999999997 + 20 +148.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +149.99999999999997 + 20 +138.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +99.99999999999999 + 20 +148.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.99999999999997 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +50.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +50.0 + 20 +148.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +0.0 + 21 +138.85164800000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +148.85164800000007 + 30 +0.0 + 11 +50.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +138.85164800000007 + 30 +0.0 + 11 +0.0 + 21 +148.85164800000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +108.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +50.0 + 20 +108.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +108.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +108.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +98.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +108.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +98.85164800000003 + 30 +0.0 + 11 +50.0 + 21 +98.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +108.85164800000003 + 30 +0.0 + 11 +100.0 + 21 +98.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +148.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +100.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +188.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +188.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +188.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +188.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +161.40786804847943 + 20 +37.35482121234262 + 30 +0.0 + 11 +159.13799662747846 + 21 +39.65755243235412 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +159.13799662747846 + 20 +39.65755243235412 + 30 +0.0 + 11 +158.78191171333694 + 21 +39.306548822798916 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +158.78191171333694 + 20 +39.306548822798916 + 30 +0.0 + 11 +161.05178313433782 + 21 +37.003817602787414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +161.05178313433782 + 20 +37.003817602787414 + 30 +0.0 + 11 +161.40786804847943 + 21 +37.35482121234262 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +147.94994863385025 + 20 +48.38484435693414 + 30 +0.0 + 11 +149.31664954461675 + 21 +48.38484435693414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.31664954461675 + 20 +48.38484435693414 + 30 +0.0 + 11 +149.31664954461675 + 21 +51.118246178467075 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.31664954461675 + 20 +51.118246178467075 + 30 +0.0 + 11 +147.94994863385025 + 21 +51.118246178467075 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +159.13799662747854 + 20 +168.0457435676459 + 30 +0.0 + 11 +161.40786804847946 + 21 +170.3484747876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +161.40786804847946 + 20 +170.3484747876574 + 30 +0.0 + 11 +161.05178313433788 + 21 +170.69947839721263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +161.05178313433788 + 20 +170.69947839721263 + 30 +0.0 + 11 +158.78191171333697 + 21 +168.39674717720112 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +158.78191171333697 + 20 +168.39674717720112 + 30 +0.0 + 11 +159.13799662747854 + 21 +168.0457435676459 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.5921319515205 + 20 +170.34847478765738 + 30 +0.0 + 11 +230.86200337252146 + 21 +168.04574356764587 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +230.86200337252146 + 20 +168.04574356764587 + 30 +0.0 + 11 +231.21808828666303 + 21 +168.3967471772011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +231.21808828666303 + 20 +168.3967471772011 + 30 +0.0 + 11 +228.9482168656621 + 21 +170.69947839721257 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.9482168656621 + 20 +170.69947839721257 + 30 +0.0 + 11 +228.5921319515205 + 21 +170.34847478765738 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +242.0500513661497 + 20 +159.31845164306583 + 30 +0.0 + 11 +240.68335045538322 + 21 +159.31845164306583 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +240.68335045538322 + 20 +159.31845164306583 + 30 +0.0 + 11 +240.68335045538322 + 21 +156.5850498215329 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +240.68335045538322 + 20 +156.5850498215329 + 30 +0.0 + 11 +242.0500513661497 + 21 +156.5850498215329 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +230.86200337252137 + 20 +39.65755243235414 + 30 +0.0 + 11 +228.59213195152043 + 21 +37.354821212342635 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.59213195152043 + 20 +37.354821212342635 + 30 +0.0 + 11 +228.94821686566198 + 21 +37.003817602787414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +228.94821686566198 + 20 +37.003817602787414 + 30 +0.0 + 11 +231.21808828666295 + 21 +39.306548822798916 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +231.21808828666295 + 20 +39.306548822798916 + 30 +0.0 + 11 +230.86200337252137 + 21 +39.65755243235414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +242.05005136614963 + 20 +51.11824617846707 + 30 +0.0 + 11 +240.68335045538316 + 21 +51.11824617846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +240.68335045538316 + 20 +51.11824617846707 + 30 +0.0 + 11 +240.68335045538316 + 21 +48.38484435693413 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +240.68335045538316 + 20 +48.38484435693413 + 30 +0.0 + 11 +242.05005136614963 + 21 +48.38484435693413 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +147.94994863385028 + 20 +156.58504982153295 + 30 +0.0 + 11 +149.31664954461675 + 21 +156.58504982153295 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.31664954461675 + 20 +156.58504982153295 + 30 +0.0 + 11 +149.31664954461675 + 21 +159.31845164306588 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +149.31664954461675 + 20 +159.31845164306588 + 30 +0.0 + 11 +147.94994863385028 + 21 +159.31845164306588 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +71.0 + 20 +117.85164800000001 + 30 +0.0 + 11 +71.0 + 21 +109.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +71.0 + 20 +109.85164800000001 + 30 +0.0 + 11 +79.0 + 21 +109.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +79.0 + 20 +109.85164800000001 + 30 +0.0 + 11 +79.0 + 21 +117.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +79.0 + 20 +117.85164800000001 + 30 +0.0 + 11 +71.0 + 21 +117.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +83.58333333333334 + 20 +106.60164800000003 + 30 +0.0 + 11 +66.4166666666667 + 21 +106.60164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.4166666666667 + 20 +106.60164800000004 + 30 +0.0 + 11 +66.4166666666667 + 21 +106.10164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.4166666666667 + 20 +106.10164800000004 + 30 +0.0 + 11 +83.58333333333334 + 21 +106.10164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +83.58333333333334 + 20 +106.10164800000003 + 30 +0.0 + 11 +83.58333333333334 + 21 +106.60164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +71.00000000000001 + 20 +177.85164800000004 + 30 +0.0 + 11 +71.00000000000001 + 21 +169.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +71.00000000000001 + 20 +169.851648 + 30 +0.0 + 11 +79.00000000000001 + 21 +169.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +79.00000000000001 + 20 +169.851648 + 30 +0.0 + 11 +79.00000000000001 + 21 +177.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +79.00000000000001 + 20 +177.85164800000004 + 30 +0.0 + 11 +71.00000000000001 + 21 +177.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.66666666666666 + 20 +186.351648 + 30 +0.0 + 11 +61.666666666666664 + 21 +186.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +61.666666666666664 + 20 +186.351648 + 30 +0.0 + 11 +66.66666666666666 + 21 +181.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.66666666666666 + 20 +181.351648 + 30 +0.0 + 11 +83.33333333333334 + 21 +181.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +83.33333333333334 + 20 +181.351648 + 30 +0.0 + 11 +88.33333333333334 + 21 +186.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +88.33333333333334 + 20 +186.351648 + 30 +0.0 + 11 +83.33333333333334 + 21 +186.351648 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithDCMount/graph-autofold-graph.dxf b/rocolib/output/BoatWithDCMount/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..31a2589a0a39a9afd21d3a9f2fd334780628c0e2 --- /dev/null +++ b/rocolib/output/BoatWithDCMount/graph-autofold-graph.dxf @@ -0,0 +1,3236 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +169.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +194.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +169.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +194.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +194.99999999999997 + 20 +-7.134504187433777e-08 + 30 +0.0 + 11 +169.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.51320686867427 + 20 +33.97156470018156 + 30 +0.0 + 11 +155.7566034343371 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +194.99999999999997 + 20 +-7.13450560851925e-08 + 30 +0.0 + 11 +161.51320686867427 + 21 +33.97156470018156 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +155.7566034343371 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +155.7566034343371 + 20 +39.81150361779138 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.26659817846704 + 20 +53.85164800000001 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.26659817846704 + 20 +45.6514425354012 + 30 +0.0 + 11 +147.26659817846704 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999994 + 20 +45.6514425354012 + 30 +0.0 + 11 +147.26659817846704 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +155.75660343433714 + 21 +167.89179238220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +155.75660343433714 + 20 +167.89179238220865 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.51320686867436 + 20 +173.73173129981845 + 30 +0.0 + 11 +195.0 + 21 +207.70329607134505 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +155.75660343433714 + 20 +167.89179238220865 + 30 +0.0 + 11 +161.51320686867436 + 21 +173.73173129981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +170.0 + 20 +153.851648 + 30 +0.0 + 11 +195.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +195.0 + 20 +153.851648 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.48679313132564 + 20 +173.73173129981845 + 30 +0.0 + 11 +234.2433965656628 + 21 +167.89179238220862 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +228.48679313132564 + 21 +173.73173129981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +234.2433965656628 + 21 +167.89179238220862 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +234.2433965656628 + 20 +167.89179238220862 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.7334018215329 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.7334018215329 + 20 +162.05185346459876 + 30 +0.0 + 11 +242.7334018215329 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +162.05185346459876 + 30 +0.0 + 11 +242.7334018215329 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +239.99999999999991 + 20 +53.851648 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +234.24339656566272 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +234.24339656566272 + 20 +39.81150361779138 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +194.9999999999999 + 20 +-7.134499924177363e-08 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.48679313132556 + 20 +33.971564700181574 + 30 +0.0 + 11 +194.9999999999999 + 21 +-7.134499924177363e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +234.24339656566272 + 20 +39.811503617791395 + 30 +0.0 + 11 +228.48679313132556 + 21 +33.971564700181574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.73340182153285 + 20 +45.651442535401195 + 30 +0.0 + 11 +239.99999999999991 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.73340182153285 + 20 +53.851648000000004 + 30 +0.0 + 11 +242.73340182153285 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999991 + 20 +53.851648000000004 + 30 +0.0 + 11 +242.73340182153285 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +138.85164799999998 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +148.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +138.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +148.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999991 + 20 +53.851648 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.26659817846706 + 20 +162.05185346459885 + 30 +0.0 + 11 +149.99999999999997 + 21 +162.05185346459885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.26659817846706 + 20 +153.851648 + 30 +0.0 + 11 +147.26659817846706 + 21 +162.05185346459885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +147.26659817846706 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +148.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +149.99999999999997 + 20 +138.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +99.99999999999999 + 20 +148.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +148.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +0.0 + 21 +138.85164800000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +148.85164800000007 + 30 +0.0 + 11 +50.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +138.85164800000007 + 30 +0.0 + 11 +0.0 + 21 +148.85164800000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +108.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +108.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +108.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +108.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +98.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +108.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +98.85164800000003 + 30 +0.0 + 11 +50.0 + 21 +98.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +108.85164800000003 + 30 +0.0 + 11 +100.0 + 21 +98.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +148.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +100.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +188.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +188.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +188.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +188.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.40786804847943 + 20 +37.35482121234262 + 30 +0.0 + 11 +159.13799662747846 + 21 +39.65755243235412 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +159.13799662747846 + 20 +39.65755243235412 + 30 +0.0 + 11 +158.78191171333694 + 21 +39.306548822798916 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +158.78191171333694 + 20 +39.306548822798916 + 30 +0.0 + 11 +161.05178313433782 + 21 +37.003817602787414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.05178313433782 + 20 +37.003817602787414 + 30 +0.0 + 11 +161.40786804847943 + 21 +37.35482121234262 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.94994863385025 + 20 +48.38484435693414 + 30 +0.0 + 11 +149.31664954461675 + 21 +48.38484435693414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.31664954461675 + 20 +48.38484435693414 + 30 +0.0 + 11 +149.31664954461675 + 21 +51.118246178467075 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.31664954461675 + 20 +51.118246178467075 + 30 +0.0 + 11 +147.94994863385025 + 21 +51.118246178467075 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +159.13799662747854 + 20 +168.0457435676459 + 30 +0.0 + 11 +161.40786804847946 + 21 +170.3484747876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.40786804847946 + 20 +170.3484747876574 + 30 +0.0 + 11 +161.05178313433788 + 21 +170.69947839721263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.05178313433788 + 20 +170.69947839721263 + 30 +0.0 + 11 +158.78191171333697 + 21 +168.39674717720112 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +158.78191171333697 + 20 +168.39674717720112 + 30 +0.0 + 11 +159.13799662747854 + 21 +168.0457435676459 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.5921319515205 + 20 +170.34847478765738 + 30 +0.0 + 11 +230.86200337252146 + 21 +168.04574356764587 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.86200337252146 + 20 +168.04574356764587 + 30 +0.0 + 11 +231.21808828666303 + 21 +168.3967471772011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +231.21808828666303 + 20 +168.3967471772011 + 30 +0.0 + 11 +228.9482168656621 + 21 +170.69947839721257 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.9482168656621 + 20 +170.69947839721257 + 30 +0.0 + 11 +228.5921319515205 + 21 +170.34847478765738 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.0500513661497 + 20 +159.31845164306583 + 30 +0.0 + 11 +240.68335045538322 + 21 +159.31845164306583 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +240.68335045538322 + 20 +159.31845164306583 + 30 +0.0 + 11 +240.68335045538322 + 21 +156.5850498215329 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +240.68335045538322 + 20 +156.5850498215329 + 30 +0.0 + 11 +242.0500513661497 + 21 +156.5850498215329 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.86200337252137 + 20 +39.65755243235414 + 30 +0.0 + 11 +228.59213195152043 + 21 +37.354821212342635 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.59213195152043 + 20 +37.354821212342635 + 30 +0.0 + 11 +228.94821686566198 + 21 +37.003817602787414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.94821686566198 + 20 +37.003817602787414 + 30 +0.0 + 11 +231.21808828666295 + 21 +39.306548822798916 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +231.21808828666295 + 20 +39.306548822798916 + 30 +0.0 + 11 +230.86200337252137 + 21 +39.65755243235414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.05005136614963 + 20 +51.11824617846707 + 30 +0.0 + 11 +240.68335045538316 + 21 +51.11824617846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +240.68335045538316 + 20 +51.11824617846707 + 30 +0.0 + 11 +240.68335045538316 + 21 +48.38484435693413 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +240.68335045538316 + 20 +48.38484435693413 + 30 +0.0 + 11 +242.05005136614963 + 21 +48.38484435693413 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.94994863385028 + 20 +156.58504982153295 + 30 +0.0 + 11 +149.31664954461675 + 21 +156.58504982153295 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.31664954461675 + 20 +156.58504982153295 + 30 +0.0 + 11 +149.31664954461675 + 21 +159.31845164306588 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.31664954461675 + 20 +159.31845164306588 + 30 +0.0 + 11 +147.94994863385028 + 21 +159.31845164306588 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.0 + 20 +117.85164800000001 + 30 +0.0 + 11 +71.0 + 21 +109.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.0 + 20 +109.85164800000001 + 30 +0.0 + 11 +79.0 + 21 +109.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.0 + 20 +109.85164800000001 + 30 +0.0 + 11 +79.0 + 21 +117.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.0 + 20 +117.85164800000001 + 30 +0.0 + 11 +71.0 + 21 +117.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +83.58333333333334 + 20 +106.60164800000003 + 30 +0.0 + 11 +66.4166666666667 + 21 +106.60164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.4166666666667 + 20 +106.60164800000004 + 30 +0.0 + 11 +66.4166666666667 + 21 +106.10164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.4166666666667 + 20 +106.10164800000004 + 30 +0.0 + 11 +83.58333333333334 + 21 +106.10164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +83.58333333333334 + 20 +106.10164800000003 + 30 +0.0 + 11 +83.58333333333334 + 21 +106.60164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.00000000000001 + 20 +177.85164800000004 + 30 +0.0 + 11 +71.00000000000001 + 21 +169.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.00000000000001 + 20 +169.851648 + 30 +0.0 + 11 +79.00000000000001 + 21 +169.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.00000000000001 + 20 +169.851648 + 30 +0.0 + 11 +79.00000000000001 + 21 +177.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.00000000000001 + 20 +177.85164800000004 + 30 +0.0 + 11 +71.00000000000001 + 21 +177.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.66666666666666 + 20 +186.351648 + 30 +0.0 + 11 +61.666666666666664 + 21 +186.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.666666666666664 + 20 +186.351648 + 30 +0.0 + 11 +66.66666666666666 + 21 +181.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.66666666666666 + 20 +181.351648 + 30 +0.0 + 11 +83.33333333333334 + 21 +181.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +83.33333333333334 + 20 +181.351648 + 30 +0.0 + 11 +88.33333333333334 + 21 +186.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.33333333333334 + 20 +186.351648 + 30 +0.0 + 11 +83.33333333333334 + 21 +186.351648 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithDCMount/graph-lasercutter.svg b/rocolib/output/BoatWithDCMount/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..dc7e53e051ce2f743e70af894a3df200cf72ac50 --- /dev/null +++ b/rocolib/output/BoatWithDCMount/graph-lasercutter.svg @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="utf-8" ?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 242.733402 207.703296" width="242.733402mm"> + <defs/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="219.99999999999997" y1="53.851648000000004" y2="153.851648"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.99999999999997" x2="169.99999999999997" y1="53.851648000000004" y2="153.851648"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.99999999999997" x2="169.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="194.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.99999999999997" x2="169.99999999999997" y1="-7.134504187433777e-08" y2="53.851648000000004"/> + <line stroke="#000000" x1="161.51320686867427" x2="155.7566034343371" y1="33.97156470018156" y2="39.81150361779138"/> + <line stroke="#000000" x1="194.99999999999997" x2="161.51320686867427" y1="-7.13450560851925e-08" y2="33.97156470018156"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.99999999999997" x2="155.7566034343371" y1="53.851648000000004" y2="39.81150361779138"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.99999999999997" x2="149.99999999999994" y1="53.851648000000004" y2="45.6514425354012"/> + <line stroke="#000000" x1="155.7566034343371" x2="149.99999999999994" y1="39.81150361779138" y2="45.6514425354012"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999994" x2="149.99999999999994" y1="53.851648000000004" y2="45.651442535401195"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.99999999999997" x2="149.99999999999994" y1="53.851648000000004" y2="53.851648000000004"/> + <line stroke="#000000" x1="147.26659817846704" x2="149.99999999999994" y1="53.85164800000001" y2="53.85164800000001"/> + <line stroke="#000000" x1="147.26659817846704" x2="147.26659817846704" y1="45.6514425354012" y2="53.85164800000001"/> + <line stroke="#000000" x1="149.99999999999994" x2="147.26659817846704" y1="45.6514425354012" y2="45.6514425354012"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999997" x2="170.0" y1="153.851648" y2="153.851648"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999997" x2="170.0" y1="162.05185346459885" y2="153.851648"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999997" x2="149.99999999999997" y1="162.05185346459885" y2="153.851648"/> + <line stroke="#000000" x1="149.99999999999997" x2="155.75660343433714" y1="162.05185346459885" y2="167.89179238220865"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="155.75660343433714" x2="170.0" y1="167.89179238220865" y2="153.851648"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="195.0" x2="170.0" y1="207.70329607134505" y2="153.851648"/> + <line stroke="#000000" x1="161.51320686867436" x2="195.0" y1="173.73173129981845" y2="207.70329607134505"/> + <line stroke="#000000" x1="155.75660343433714" x2="161.51320686867436" y1="167.89179238220865" y2="173.73173129981845"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="170.0" x2="195.0" y1="153.851648" y2="153.851648"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="195.0" x2="219.99999999999997" y1="153.851648" y2="153.851648"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="195.0" x2="219.99999999999997" y1="207.70329607134505" y2="153.851648"/> + <line stroke="#000000" x1="228.48679313132564" x2="234.2433965656628" y1="173.73173129981845" y2="167.89179238220862"/> + <line stroke="#000000" x1="195.0" x2="228.48679313132564" y1="207.70329607134505" y2="173.73173129981845"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="234.2433965656628" y1="153.851648" y2="167.89179238220862"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="239.99999999999997" y1="153.851648" y2="162.05185346459876"/> + <line stroke="#000000" x1="234.2433965656628" x2="239.99999999999997" y1="167.89179238220862" y2="162.05185346459876"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="162.05185346459876"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.99999999999997" x2="239.99999999999997" y1="153.851648" y2="153.85164799999998"/> + <line stroke="#000000" x1="242.7334018215329" x2="239.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/> + <line stroke="#000000" x1="242.7334018215329" x2="242.7334018215329" y1="162.05185346459876" y2="153.85164799999998"/> + <line stroke="#000000" x1="239.99999999999997" x2="242.7334018215329" y1="162.05185346459876" y2="162.05185346459876"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="239.99999999999991" x2="219.99999999999991" y1="53.851648" y2="53.85164800000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="239.99999999999991" x2="219.99999999999991" y1="45.651442535401195" y2="53.85164800000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="239.99999999999991" x2="239.99999999999991" y1="45.651442535401195" y2="53.851648"/> + <line stroke="#000000" x1="239.99999999999991" x2="234.24339656566272" y1="45.651442535401195" y2="39.81150361779138"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="234.24339656566272" x2="219.99999999999991" y1="39.81150361779138" y2="53.85164800000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.9999999999999" x2="219.99999999999991" y1="-7.134499924177363e-08" y2="53.85164800000002"/> + <line stroke="#000000" x1="228.48679313132556" x2="194.9999999999999" y1="33.971564700181574" y2="-7.134499924177363e-08"/> + <line stroke="#000000" x1="234.24339656566272" x2="228.48679313132556" y1="39.811503617791395" y2="33.971564700181574"/> + <line stroke="#000000" x1="242.73340182153285" x2="239.99999999999991" y1="45.651442535401195" y2="45.651442535401195"/> + <line stroke="#000000" x1="242.73340182153285" x2="242.73340182153285" y1="53.851648000000004" y2="45.651442535401195"/> + <line stroke="#000000" x1="239.99999999999991" x2="242.73340182153285" y1="53.851648000000004" y2="53.851648000000004"/> + <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999991" y1="138.85164799999998" y2="53.851648"/> + <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="148.851648" y2="138.85164799999998"/> + <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="148.851648"/> + <line stroke="#000000" x1="239.99999999999997" x2="239.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/> + <line stroke="#000000" x1="239.99999999999991" x2="239.99999999999991" y1="53.851648" y2="53.851648"/> + <line stroke="#000000" x1="147.26659817846706" x2="149.99999999999997" y1="162.05185346459885" y2="162.05185346459885"/> + <line stroke="#000000" x1="147.26659817846706" x2="147.26659817846706" y1="153.851648" y2="162.05185346459885"/> + <line stroke="#000000" x1="149.99999999999997" x2="147.26659817846706" y1="153.851648" y2="153.851648"/> + <line stroke="#000000" x1="149.99999999999997" x2="149.99999999999997" y1="148.85164800000004" y2="153.851648"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="149.99999999999997" x2="149.99999999999997" y1="138.85164800000004" y2="148.85164800000004"/> + <line stroke="#000000" x1="149.99999999999994" x2="149.99999999999997" y1="53.851648000000004" y2="138.85164800000004"/> + <line stroke="#000000" x1="149.99999999999994" x2="149.99999999999994" y1="53.851648000000004" y2="53.851648000000004"/> + <line stroke="#000000" x1="149.99999999999997" x2="149.99999999999997" y1="153.851648" y2="153.851648"/> + <line stroke="#000000" x1="99.99999999999999" x2="149.99999999999997" y1="148.85164800000004" y2="148.85164800000004"/> + <line stroke="#000000" x1="149.99999999999997" x2="99.99999999999999" y1="138.85164800000004" y2="138.85164800000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="99.99999999999999" y1="138.85164800000004" y2="138.85164800000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="100.0" y1="148.85164800000004" y2="148.85164800000004"/> + <line stroke="#000000" x1="50.0" x2="0.0" y1="138.85164800000004" y2="138.85164800000007"/> + <line stroke="#000000" x1="0.0" x2="50.0" y1="148.85164800000007" y2="148.85164800000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="138.85164800000007" y2="148.85164800000007"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="108.85164800000004" y2="138.85164800000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="99.99999999999999" y1="108.85164800000004" y2="108.85164800000003"/> + <line stroke="#000000" x1="100.0" x2="99.99999999999999" y1="138.85164800000004" y2="108.85164800000003"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="98.85164800000004" y2="108.85164800000004"/> + <line stroke="#000000" x1="100.0" x2="50.0" y1="98.85164800000003" y2="98.85164800000004"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="108.85164800000003" y2="98.85164800000003"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="148.85164800000004" y2="178.85164800000004"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="178.85164800000004" y2="148.85164800000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="100.0" x2="50.0" y1="178.85164800000004" y2="178.85164800000004"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="188.85164800000004" y2="178.85164800000004"/> + <line stroke="#000000" x1="50.0" x2="100.0" y1="188.85164800000004" y2="188.85164800000004"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="178.85164800000004" y2="188.85164800000004"/> + <line stroke="#888888" x1="161.40786804847943" x2="159.13799662747846" y1="37.35482121234262" y2="39.65755243235412"/> + <line stroke="#888888" x1="159.13799662747846" x2="158.78191171333694" y1="39.65755243235412" y2="39.306548822798916"/> + <line stroke="#888888" x1="158.78191171333694" x2="161.05178313433782" y1="39.306548822798916" y2="37.003817602787414"/> + <line stroke="#888888" x1="161.05178313433782" x2="161.40786804847943" y1="37.003817602787414" y2="37.35482121234262"/> + <line stroke="#888888" x1="147.94994863385025" x2="149.31664954461675" y1="48.38484435693414" y2="48.38484435693414"/> + <line stroke="#888888" x1="149.31664954461675" x2="149.31664954461675" y1="48.38484435693414" y2="51.118246178467075"/> + <line stroke="#888888" x1="149.31664954461675" x2="147.94994863385025" y1="51.118246178467075" y2="51.118246178467075"/> + <line stroke="#888888" x1="159.13799662747854" x2="161.40786804847946" y1="168.0457435676459" y2="170.3484747876574"/> + <line stroke="#888888" x1="161.40786804847946" x2="161.05178313433788" y1="170.3484747876574" y2="170.69947839721263"/> + <line stroke="#888888" x1="161.05178313433788" x2="158.78191171333697" y1="170.69947839721263" y2="168.39674717720112"/> + <line stroke="#888888" x1="158.78191171333697" x2="159.13799662747854" y1="168.39674717720112" y2="168.0457435676459"/> + <line stroke="#888888" x1="228.5921319515205" x2="230.86200337252146" y1="170.34847478765738" y2="168.04574356764587"/> + <line stroke="#888888" x1="230.86200337252146" x2="231.21808828666303" y1="168.04574356764587" y2="168.3967471772011"/> + <line stroke="#888888" x1="231.21808828666303" x2="228.9482168656621" y1="168.3967471772011" y2="170.69947839721257"/> + <line stroke="#888888" x1="228.9482168656621" x2="228.5921319515205" y1="170.69947839721257" y2="170.34847478765738"/> + <line stroke="#888888" x1="242.0500513661497" x2="240.68335045538322" y1="159.31845164306583" y2="159.31845164306583"/> + <line stroke="#888888" x1="240.68335045538322" x2="240.68335045538322" y1="159.31845164306583" y2="156.5850498215329"/> + <line stroke="#888888" x1="240.68335045538322" x2="242.0500513661497" y1="156.5850498215329" y2="156.5850498215329"/> + <line stroke="#888888" x1="230.86200337252137" x2="228.59213195152043" y1="39.65755243235414" y2="37.354821212342635"/> + <line stroke="#888888" x1="228.59213195152043" x2="228.94821686566198" y1="37.354821212342635" y2="37.003817602787414"/> + <line stroke="#888888" x1="228.94821686566198" x2="231.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/> + <line stroke="#888888" x1="231.21808828666295" x2="230.86200337252137" y1="39.306548822798916" y2="39.65755243235414"/> + <line stroke="#888888" x1="242.05005136614963" x2="240.68335045538316" y1="51.11824617846707" y2="51.11824617846707"/> + <line stroke="#888888" x1="240.68335045538316" x2="240.68335045538316" y1="51.11824617846707" y2="48.38484435693413"/> + <line stroke="#888888" x1="240.68335045538316" x2="242.05005136614963" y1="48.38484435693413" y2="48.38484435693413"/> + <line stroke="#888888" x1="147.94994863385028" x2="149.31664954461675" y1="156.58504982153295" y2="156.58504982153295"/> + <line stroke="#888888" x1="149.31664954461675" x2="149.31664954461675" y1="156.58504982153295" y2="159.31845164306588"/> + <line stroke="#888888" x1="149.31664954461675" x2="147.94994863385028" y1="159.31845164306588" y2="159.31845164306588"/> + <line stroke="#888888" x1="71.0" x2="71.0" y1="117.85164800000001" y2="109.85164800000001"/> + <line stroke="#888888" x1="71.0" x2="79.0" y1="109.85164800000001" y2="109.85164800000001"/> + <line stroke="#888888" x1="79.0" x2="79.0" y1="109.85164800000001" y2="117.85164800000001"/> + <line stroke="#888888" x1="79.0" x2="71.0" y1="117.85164800000001" y2="117.85164800000001"/> + <line stroke="#888888" x1="83.58333333333334" x2="66.4166666666667" y1="106.60164800000003" y2="106.60164800000004"/> + <line stroke="#888888" x1="66.4166666666667" x2="66.4166666666667" y1="106.60164800000004" y2="106.10164800000004"/> + <line stroke="#888888" x1="66.4166666666667" x2="83.58333333333334" y1="106.10164800000004" y2="106.10164800000003"/> + <line stroke="#888888" x1="83.58333333333334" x2="83.58333333333334" y1="106.10164800000003" y2="106.60164800000003"/> + <line stroke="#888888" x1="71.00000000000001" x2="71.00000000000001" y1="177.85164800000004" y2="169.851648"/> + <line stroke="#888888" x1="71.00000000000001" x2="79.00000000000001" y1="169.851648" y2="169.851648"/> + <line stroke="#888888" x1="79.00000000000001" x2="79.00000000000001" y1="169.851648" y2="177.85164800000004"/> + <line stroke="#888888" x1="79.00000000000001" x2="71.00000000000001" y1="177.85164800000004" y2="177.85164800000004"/> + <line stroke="#888888" x1="66.66666666666666" x2="61.666666666666664" y1="186.351648" y2="186.351648"/> + <line stroke="#888888" x1="61.666666666666664" x2="66.66666666666666" y1="186.351648" y2="181.351648"/> + <line stroke="#888888" x1="66.66666666666666" x2="83.33333333333334" y1="181.351648" y2="181.351648"/> + <line stroke="#888888" x1="83.33333333333334" x2="88.33333333333334" y1="181.351648" y2="186.351648"/> + <line stroke="#888888" x1="88.33333333333334" x2="83.33333333333334" y1="186.351648" y2="186.351648"/> +</svg> diff --git a/rocolib/output/BoatWithDCMount/graph-model.png b/rocolib/output/BoatWithDCMount/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..e41b429bc48e74b540ffd4057dff3d0bc88de4ea Binary files /dev/null and b/rocolib/output/BoatWithDCMount/graph-model.png differ diff --git a/rocolib/output/BoatWithDCMount/graph-model.stl b/rocolib/output/BoatWithDCMount/graph-model.stl new file mode 100644 index 0000000000000000000000000000000000000000..54fced9a3ea863b9871849b6e6614b89de191935 --- /dev/null +++ b/rocolib/output/BoatWithDCMount/graph-model.stl @@ -0,0 +1,422 @@ +solid python +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 0.0000 +vertex -0.0250 -0.0500 0.0000 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 0.0000 +vertex 0.0250 0.0500 0.0000 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 0.0000 +vertex -0.0250 0.0500 0.0000 +vertex -0.0250 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 0.0000 +vertex 0.0250 -0.0500 0.0000 +vertex 0.0250 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 0.0500 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 0.0000 +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0213 -0.0573 -0.0200 +vertex 0.0000 -0.1000 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 -0.0500 0.0000 +vertex -0.0250 -0.0500 0.0000 +vertex -0.0000 -0.1000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0000 -0.0500 0.0000 +vertex 0.0000 -0.1000 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0213 -0.0573 -0.0200 +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 0.0000 +vertex 0.0000 -0.1000 -0.0200 +vertex 0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0250 -0.0500 0.0000 +vertex -0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0213 -0.0573 -0.0200 +vertex -0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0213 -0.0573 -0.0200 +vertex 0.0250 -0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0250 -0.0500 0.0000 +vertex 0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 0.0000 +vertex 0.0250 0.0500 -0.0200 +vertex 0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0213 0.0573 -0.0200 +vertex -0.0000 0.1000 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0500 0.0000 +vertex 0.0250 0.0500 0.0000 +vertex -0.0000 0.1000 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0500 0.0000 +vertex -0.0000 0.1000 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0213 0.0573 -0.0200 +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 0.0000 +vertex -0.0000 0.1000 -0.0200 +vertex -0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0250 0.0500 0.0000 +vertex 0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0213 0.0573 -0.0200 +vertex 0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0213 0.0573 -0.0200 +vertex -0.0250 0.0500 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0500 -0.0200 +vertex -0.0250 0.0500 0.0000 +vertex -0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0550 0.0450 0.0800 +vertex -0.0540 0.0450 0.0590 +vertex -0.0540 0.0450 0.0510 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0540 0.0450 0.0590 +vertex -0.0550 0.0450 0.0800 +vertex -0.0460 0.0450 0.0590 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0550 0.0450 0.0300 +vertex -0.0540 0.0450 0.0510 +vertex -0.0460 0.0450 0.0510 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0540 0.0450 0.0510 +vertex -0.0550 0.0450 0.0300 +vertex -0.0550 0.0450 0.0800 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0460 0.0450 0.0590 +vertex -0.0250 0.0450 0.0800 +vertex -0.0250 0.0450 0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0450 0.0800 +vertex -0.0460 0.0450 0.0590 +vertex -0.0550 0.0450 0.0800 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0460 0.0450 0.0510 +vertex -0.0250 0.0450 0.0300 +vertex -0.0550 0.0450 0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0450 0.0300 +vertex -0.0460 0.0450 0.0510 +vertex -0.0460 0.0450 0.0590 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0450 0.0300 +vertex -0.0250 0.0450 0.0800 +vertex -0.0250 0.0350 0.0800 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0350 0.0800 +vertex -0.0250 0.0350 0.0300 +vertex -0.0250 0.0450 0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0350 0.0800 +vertex -0.0460 0.0350 0.0590 +vertex -0.0460 0.0350 0.0510 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0460 0.0350 0.0590 +vertex -0.0250 0.0350 0.0800 +vertex -0.0550 0.0350 0.0800 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0350 0.0300 +vertex -0.0460 0.0350 0.0510 +vertex -0.0550 0.0350 0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0460 0.0350 0.0510 +vertex -0.0250 0.0350 0.0300 +vertex -0.0250 0.0350 0.0800 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0540 0.0350 0.0590 +vertex -0.0550 0.0350 0.0800 +vertex -0.0550 0.0350 0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0550 0.0350 0.0800 +vertex -0.0540 0.0350 0.0590 +vertex -0.0460 0.0350 0.0590 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0540 0.0350 0.0510 +vertex -0.0550 0.0350 0.0300 +vertex -0.0460 0.0350 0.0510 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0550 0.0350 0.0300 +vertex -0.0540 0.0350 0.0510 +vertex -0.0540 0.0350 0.0590 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0550 0.0350 0.0300 +vertex -0.0550 0.0350 0.0800 +vertex -0.0550 0.0450 0.0800 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0550 0.0450 0.0800 +vertex -0.0550 0.0450 0.0300 +vertex -0.0550 0.0350 0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0450 0.1300 +vertex -0.0250 0.0350 0.1300 +vertex -0.0250 0.0350 0.0800 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0350 0.0800 +vertex -0.0250 0.0450 0.0800 +vertex -0.0250 0.0450 0.1300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0350 -0.0200 +vertex -0.0250 0.0450 -0.0200 +vertex -0.0250 0.0450 0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 0.0450 0.0300 +vertex -0.0250 0.0350 0.0300 +vertex -0.0250 0.0350 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0216 -0.0575 -0.0173 +vertex -0.0213 -0.0573 -0.0200 +vertex -0.0250 -0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0250 -0.0500 -0.0200 +vertex -0.0253 -0.0501 -0.0173 +vertex -0.0216 -0.0575 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0253 -0.0501 -0.0173 +vertex 0.0250 -0.0500 -0.0200 +vertex 0.0213 -0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0213 -0.0573 -0.0200 +vertex 0.0216 -0.0575 -0.0173 +vertex 0.0253 -0.0501 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0216 0.0575 -0.0173 +vertex 0.0213 0.0573 -0.0200 +vertex 0.0250 0.0500 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 0.0500 -0.0200 +vertex 0.0253 0.0501 -0.0173 +vertex 0.0216 0.0575 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0253 0.0501 -0.0173 +vertex -0.0250 0.0500 -0.0200 +vertex -0.0213 0.0573 -0.0200 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0213 0.0573 -0.0200 +vertex -0.0216 0.0575 -0.0173 +vertex -0.0253 0.0501 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0550 0.0350 0.0800 +vertex -0.0550 0.0450 0.0800 +vertex -0.0550 0.0450 0.0300 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0550 0.0450 0.0300 +vertex -0.0550 0.0350 0.0300 +vertex -0.0550 0.0350 0.0800 +endloop +endfacet +endsolid python diff --git a/rocolib/output/BoatWithDCMount/graph-silhouette.dxf b/rocolib/output/BoatWithDCMount/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..044c6e1da666961babccf18bdec4a3b8aed182f2 --- /dev/null +++ b/rocolib/output/BoatWithDCMount/graph-silhouette.dxf @@ -0,0 +1,3236 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +169.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +194.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +169.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +194.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +194.99999999999997 + 20 +-7.134504187433777e-08 + 30 +0.0 + 11 +169.99999999999997 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.51320686867427 + 20 +33.97156470018156 + 30 +0.0 + 11 +155.7566034343371 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +194.99999999999997 + 20 +-7.13450560851925e-08 + 30 +0.0 + 11 +161.51320686867427 + 21 +33.97156470018156 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +155.7566034343371 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +155.7566034343371 + 20 +39.81150361779138 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +169.99999999999997 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.26659817846704 + 20 +53.85164800000001 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.26659817846704 + 20 +45.6514425354012 + 30 +0.0 + 11 +147.26659817846704 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999994 + 20 +45.6514425354012 + 30 +0.0 + 11 +147.26659817846704 + 21 +45.6514425354012 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +162.05185346459885 + 30 +0.0 + 11 +155.75660343433714 + 21 +167.89179238220865 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +155.75660343433714 + 20 +167.89179238220865 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +170.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.51320686867436 + 20 +173.73173129981845 + 30 +0.0 + 11 +195.0 + 21 +207.70329607134505 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +155.75660343433714 + 20 +167.89179238220865 + 30 +0.0 + 11 +161.51320686867436 + 21 +173.73173129981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +170.0 + 20 +153.851648 + 30 +0.0 + 11 +195.0 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +195.0 + 20 +153.851648 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +219.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.48679313132564 + 20 +173.73173129981845 + 30 +0.0 + 11 +234.2433965656628 + 21 +167.89179238220862 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +195.0 + 20 +207.70329607134505 + 30 +0.0 + 11 +228.48679313132564 + 21 +173.73173129981845 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +234.2433965656628 + 21 +167.89179238220862 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +234.2433965656628 + 20 +167.89179238220862 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +219.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.7334018215329 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.7334018215329 + 20 +162.05185346459876 + 30 +0.0 + 11 +242.7334018215329 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +162.05185346459876 + 30 +0.0 + 11 +242.7334018215329 + 21 +162.05185346459876 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +239.99999999999991 + 20 +53.851648 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999991 + 20 +45.651442535401195 + 30 +0.0 + 11 +234.24339656566272 + 21 +39.81150361779138 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +234.24339656566272 + 20 +39.81150361779138 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +194.9999999999999 + 20 +-7.134499924177363e-08 + 30 +0.0 + 11 +219.99999999999991 + 21 +53.85164800000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.48679313132556 + 20 +33.971564700181574 + 30 +0.0 + 11 +194.9999999999999 + 21 +-7.134499924177363e-08 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +234.24339656566272 + 20 +39.811503617791395 + 30 +0.0 + 11 +228.48679313132556 + 21 +33.971564700181574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.73340182153285 + 20 +45.651442535401195 + 30 +0.0 + 11 +239.99999999999991 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.73340182153285 + 20 +53.851648000000004 + 30 +0.0 + 11 +242.73340182153285 + 21 +45.651442535401195 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999991 + 20 +53.851648000000004 + 30 +0.0 + 11 +242.73340182153285 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +138.85164799999998 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +148.851648 + 30 +0.0 + 11 +239.99999999999997 + 21 +138.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +148.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999997 + 20 +153.85164799999998 + 30 +0.0 + 11 +239.99999999999997 + 21 +153.85164799999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +239.99999999999991 + 20 +53.851648 + 30 +0.0 + 11 +239.99999999999991 + 21 +53.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.26659817846706 + 20 +162.05185346459885 + 30 +0.0 + 11 +149.99999999999997 + 21 +162.05185346459885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.26659817846706 + 20 +153.851648 + 30 +0.0 + 11 +147.26659817846706 + 21 +162.05185346459885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +147.26659817846706 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +148.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +149.99999999999997 + 20 +138.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999994 + 20 +53.851648000000004 + 30 +0.0 + 11 +149.99999999999994 + 21 +53.851648000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +153.851648 + 30 +0.0 + 11 +149.99999999999997 + 21 +153.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +99.99999999999999 + 20 +148.85164800000004 + 30 +0.0 + 11 +149.99999999999997 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.99999999999997 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +148.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +0.0 + 21 +138.85164800000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +148.85164800000007 + 30 +0.0 + 11 +50.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +138.85164800000007 + 30 +0.0 + 11 +0.0 + 21 +148.85164800000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +108.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +138.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +108.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +108.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +138.85164800000004 + 30 +0.0 + 11 +99.99999999999999 + 21 +108.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +98.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +108.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +98.85164800000003 + 30 +0.0 + 11 +50.0 + 21 +98.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +108.85164800000003 + 30 +0.0 + 11 +100.0 + 21 +98.85164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +148.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +148.85164800000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +100.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +188.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +178.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +188.85164800000004 + 30 +0.0 + 11 +100.0 + 21 +188.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +178.85164800000004 + 30 +0.0 + 11 +50.0 + 21 +188.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.40786804847943 + 20 +37.35482121234262 + 30 +0.0 + 11 +159.13799662747846 + 21 +39.65755243235412 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +159.13799662747846 + 20 +39.65755243235412 + 30 +0.0 + 11 +158.78191171333694 + 21 +39.306548822798916 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +158.78191171333694 + 20 +39.306548822798916 + 30 +0.0 + 11 +161.05178313433782 + 21 +37.003817602787414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.05178313433782 + 20 +37.003817602787414 + 30 +0.0 + 11 +161.40786804847943 + 21 +37.35482121234262 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.94994863385025 + 20 +48.38484435693414 + 30 +0.0 + 11 +149.31664954461675 + 21 +48.38484435693414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.31664954461675 + 20 +48.38484435693414 + 30 +0.0 + 11 +149.31664954461675 + 21 +51.118246178467075 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.31664954461675 + 20 +51.118246178467075 + 30 +0.0 + 11 +147.94994863385025 + 21 +51.118246178467075 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +159.13799662747854 + 20 +168.0457435676459 + 30 +0.0 + 11 +161.40786804847946 + 21 +170.3484747876574 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.40786804847946 + 20 +170.3484747876574 + 30 +0.0 + 11 +161.05178313433788 + 21 +170.69947839721263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +161.05178313433788 + 20 +170.69947839721263 + 30 +0.0 + 11 +158.78191171333697 + 21 +168.39674717720112 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +158.78191171333697 + 20 +168.39674717720112 + 30 +0.0 + 11 +159.13799662747854 + 21 +168.0457435676459 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.5921319515205 + 20 +170.34847478765738 + 30 +0.0 + 11 +230.86200337252146 + 21 +168.04574356764587 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.86200337252146 + 20 +168.04574356764587 + 30 +0.0 + 11 +231.21808828666303 + 21 +168.3967471772011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +231.21808828666303 + 20 +168.3967471772011 + 30 +0.0 + 11 +228.9482168656621 + 21 +170.69947839721257 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.9482168656621 + 20 +170.69947839721257 + 30 +0.0 + 11 +228.5921319515205 + 21 +170.34847478765738 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.0500513661497 + 20 +159.31845164306583 + 30 +0.0 + 11 +240.68335045538322 + 21 +159.31845164306583 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +240.68335045538322 + 20 +159.31845164306583 + 30 +0.0 + 11 +240.68335045538322 + 21 +156.5850498215329 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +240.68335045538322 + 20 +156.5850498215329 + 30 +0.0 + 11 +242.0500513661497 + 21 +156.5850498215329 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.86200337252137 + 20 +39.65755243235414 + 30 +0.0 + 11 +228.59213195152043 + 21 +37.354821212342635 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.59213195152043 + 20 +37.354821212342635 + 30 +0.0 + 11 +228.94821686566198 + 21 +37.003817602787414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +228.94821686566198 + 20 +37.003817602787414 + 30 +0.0 + 11 +231.21808828666295 + 21 +39.306548822798916 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +231.21808828666295 + 20 +39.306548822798916 + 30 +0.0 + 11 +230.86200337252137 + 21 +39.65755243235414 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +242.05005136614963 + 20 +51.11824617846707 + 30 +0.0 + 11 +240.68335045538316 + 21 +51.11824617846707 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +240.68335045538316 + 20 +51.11824617846707 + 30 +0.0 + 11 +240.68335045538316 + 21 +48.38484435693413 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +240.68335045538316 + 20 +48.38484435693413 + 30 +0.0 + 11 +242.05005136614963 + 21 +48.38484435693413 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +147.94994863385028 + 20 +156.58504982153295 + 30 +0.0 + 11 +149.31664954461675 + 21 +156.58504982153295 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.31664954461675 + 20 +156.58504982153295 + 30 +0.0 + 11 +149.31664954461675 + 21 +159.31845164306588 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +149.31664954461675 + 20 +159.31845164306588 + 30 +0.0 + 11 +147.94994863385028 + 21 +159.31845164306588 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.0 + 20 +117.85164800000001 + 30 +0.0 + 11 +71.0 + 21 +109.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.0 + 20 +109.85164800000001 + 30 +0.0 + 11 +79.0 + 21 +109.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.0 + 20 +109.85164800000001 + 30 +0.0 + 11 +79.0 + 21 +117.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.0 + 20 +117.85164800000001 + 30 +0.0 + 11 +71.0 + 21 +117.85164800000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +83.58333333333334 + 20 +106.60164800000003 + 30 +0.0 + 11 +66.4166666666667 + 21 +106.60164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.4166666666667 + 20 +106.60164800000004 + 30 +0.0 + 11 +66.4166666666667 + 21 +106.10164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.4166666666667 + 20 +106.10164800000004 + 30 +0.0 + 11 +83.58333333333334 + 21 +106.10164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +83.58333333333334 + 20 +106.10164800000003 + 30 +0.0 + 11 +83.58333333333334 + 21 +106.60164800000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.00000000000001 + 20 +177.85164800000004 + 30 +0.0 + 11 +71.00000000000001 + 21 +169.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.00000000000001 + 20 +169.851648 + 30 +0.0 + 11 +79.00000000000001 + 21 +169.851648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.00000000000001 + 20 +169.851648 + 30 +0.0 + 11 +79.00000000000001 + 21 +177.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +79.00000000000001 + 20 +177.85164800000004 + 30 +0.0 + 11 +71.00000000000001 + 21 +177.85164800000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.66666666666666 + 20 +186.351648 + 30 +0.0 + 11 +61.666666666666664 + 21 +186.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +61.666666666666664 + 20 +186.351648 + 30 +0.0 + 11 +66.66666666666666 + 21 +181.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.66666666666666 + 20 +181.351648 + 30 +0.0 + 11 +83.33333333333334 + 21 +181.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +83.33333333333334 + 20 +181.351648 + 30 +0.0 + 11 +88.33333333333334 + 21 +186.351648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +88.33333333333334 + 20 +186.351648 + 30 +0.0 + 11 +83.33333333333334 + 21 +186.351648 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithDCMount/tree.png b/rocolib/output/BoatWithDCMount/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..25a59010ae40453e568ae87762be96cec6b5e54c Binary files /dev/null and b/rocolib/output/BoatWithDCMount/tree.png differ