From 3b3feb46c96a665dc08be613fa7706ea82a111af Mon Sep 17 00:00:00 2001 From: Apostolof Date: Tue, 21 May 2019 00:36:45 +0300 Subject: [PATCH] Code final touches, Extract figures --- Assignment_2/Image2Graph.m | 15 +- Assignment_2/meanClustersColorRGB.m | 2 +- Assignment_2/recursiveNCuts.m | 19 ++- Assignment_2/report/report.tex | 5 - Assignment_2/report/res/demo1_f1.svg | 52 +++---- Assignment_2/report/res/demo1_f2.svg | 52 +++---- Assignment_2/report/res/demo1_f3.svg | 52 +++---- Assignment_2/report/res/demo2_e1_f1.svg | 46 +++--- Assignment_2/report/res/demo2_e1_f2.svg | 46 +++--- Assignment_2/report/res/demo2_e1_f3.svg | 50 +++---- Assignment_2/report/res/demo2_e1_f4.svg | 52 +++---- Assignment_2/report/res/demo2_e1_g.pdf_tex | 2 +- Assignment_2/report/res/demo2_e1_g.svg | 58 ++++---- Assignment_2/report/res/demo2_e2_f1.pdf_tex | 2 +- Assignment_2/report/res/demo2_e2_f1.svg | 60 ++++---- Assignment_2/report/res/demo2_e2_f2.pdf_tex | 2 +- Assignment_2/report/res/demo2_e2_f2.svg | 60 ++++---- Assignment_2/report/res/demo2_e2_f3.pdf_tex | 2 +- Assignment_2/report/res/demo2_e2_f3.svg | 58 ++++---- Assignment_2/report/res/demo2_e2_f4.pdf_tex | 2 +- Assignment_2/report/res/demo2_e2_f4.svg | 60 ++++---- Assignment_2/report/res/demo2_e2_f5.pdf_tex | 2 +- Assignment_2/report/res/demo2_e2_f5.svg | 60 ++++---- Assignment_2/report/res/demo2_e2_f6.pdf_tex | 2 +- Assignment_2/report/res/demo2_e2_f6.svg | 60 ++++---- Assignment_2/report/res/demo2_e2_f7.pdf_tex | 2 +- Assignment_2/report/res/demo2_e2_f7.svg | 60 ++++---- Assignment_2/report/res/demo2_e2_g.pdf_tex | 2 +- Assignment_2/report/res/demo2_e2_g.svg | 60 ++++---- Assignment_2/report/res/demo3a_e1_f1.svg | 46 +++--- Assignment_2/report/res/demo3a_e1_f2.svg | 140 ++++++------------ Assignment_2/report/res/demo3a_e1_f3.svg | 52 +++---- Assignment_2/report/res/demo3a_e1_f4.svg | 52 +++---- Assignment_2/report/res/demo3a_e2_f1.pdf_tex | 2 +- Assignment_2/report/res/demo3a_e2_f1.svg | 139 ++++++++--------- Assignment_2/report/res/demo3a_e2_f2.svg | 48 +++--- Assignment_2/report/res/demo3a_e2_f3.svg | 54 +++---- Assignment_2/report/res/demo3a_e2_f4.svg | 46 +++--- Assignment_2/report/res/demo3a_e2_f5.svg | 48 +++--- Assignment_2/report/res/demo3a_e2_f6.svg | 48 +++--- Assignment_2/report/res/demo3a_e2_f7.svg | 48 +++--- Assignment_2/report/res/demo3b_e1_f1.svg | 52 +++---- Assignment_2/report/res/demo3b_e1_f2.svg | 46 +++--- Assignment_2/report/res/demo3b_e2_f1.pdf_tex | 2 +- Assignment_2/report/res/demo3b_e2_f1.svg | 148 +++++++------------ Assignment_2/report/res/demo3b_e2_f2.svg | 52 +++---- Assignment_2/report/res/demo3b_e2_f3.svg | 54 +++---- Assignment_2/report/res/demo3c_e1_f1.pdf_tex | 58 ++++++++ Assignment_2/report/res/demo3c_e1_f1.svg | 116 +++++++++++++++ Assignment_2/report/res/demo3c_e1_f2.pdf_tex | 58 ++++++++ Assignment_2/report/res/demo3c_e1_f2.svg | 116 +++++++++++++++ Assignment_2/report/res/demo3c_e2_f1.pdf_tex | 58 ++++++++ Assignment_2/report/res/demo3c_e2_f1.svg | 116 +++++++++++++++ Assignment_2/report/res/demo3c_e2_f2.pdf_tex | 58 ++++++++ Assignment_2/report/res/demo3c_e2_f2.svg | 116 +++++++++++++++ Assignment_2/report/res/demo3c_e2_f3.pdf_tex | 58 ++++++++ Assignment_2/report/res/demo3c_e2_f3.svg | 116 +++++++++++++++ 57 files changed, 1830 insertions(+), 1062 deletions(-) create mode 100644 Assignment_2/report/res/demo3c_e1_f1.pdf_tex create mode 100644 Assignment_2/report/res/demo3c_e1_f1.svg create mode 100644 Assignment_2/report/res/demo3c_e1_f2.pdf_tex create mode 100644 Assignment_2/report/res/demo3c_e1_f2.svg create mode 100644 Assignment_2/report/res/demo3c_e2_f1.pdf_tex create mode 100644 Assignment_2/report/res/demo3c_e2_f1.svg create mode 100644 Assignment_2/report/res/demo3c_e2_f2.pdf_tex create mode 100644 Assignment_2/report/res/demo3c_e2_f2.svg create mode 100644 Assignment_2/report/res/demo3c_e2_f3.pdf_tex create mode 100644 Assignment_2/report/res/demo3c_e2_f3.svg diff --git a/Assignment_2/Image2Graph.m b/Assignment_2/Image2Graph.m index 9dc90ee..5632559 100644 --- a/Assignment_2/Image2Graph.m +++ b/Assignment_2/Image2Graph.m @@ -10,13 +10,14 @@ function myAffinityMat = Image2Graph (imIn) imageWidth = size(imIn, 2); imageHeight = size(imIn, 1); imageChannels = size(imIn, 3); - - % Produces the matrix singleLineTransform = reshape(imIn, 1, [], imageChannels); - myAffinityMat = 1 ./ exp( ... - sum(( ... + + % Calculates intensity difference per channel per point pair + myAffinityMat = ... repmat(singleLineTransform, imageWidth * imageHeight, 1, 1) - ... - permute(singleLineTransform, [2 1 3])) ... - .^ 2, 3) ... - .^ 0.5); + permute(singleLineTransform, [2 1 3]); + % Calculates "distance" between each point pair + myAffinityMat = sum(myAffinityMat .^ 2, 3) .^ 0.5; + % Calculates affinity between each point pair + myAffinityMat = 1 ./ exp(myAffinityMat ./ var(imIn(:))); end diff --git a/Assignment_2/meanClustersColorRGB.m b/Assignment_2/meanClustersColorRGB.m index 4e7922b..ca28bc5 100644 --- a/Assignment_2/meanClustersColorRGB.m +++ b/Assignment_2/meanClustersColorRGB.m @@ -19,7 +19,7 @@ function coloredIm = meanClustersColorRGB(image, clusters) coloredImB = clusters; % Assigns the mean color to each cluster - for cluster = 1:max(max(clusters)) + for cluster = (unique(clusters(:))') meanR = mean(redChannel(clusters == cluster)); meanG = mean(greenChannel(clusters == cluster)); meanB = mean(blueChannel(clusters == cluster)); diff --git a/Assignment_2/recursiveNCuts.m b/Assignment_2/recursiveNCuts.m index 69df448..5be6c3b 100644 --- a/Assignment_2/recursiveNCuts.m +++ b/Assignment_2/recursiveNCuts.m @@ -17,10 +17,12 @@ function clusterIdx = recursiveNCuts(anAffinityMat) % Checks stop conditions if (nnz(clusterIdx == 1) < 5 || nnz(clusterIdx == 2) < 5) + clusterIdx = []; return; end NCut = calculateNcut(anAffinityMat, clusterIdx); - if (NCut > 0.85) + if (NCut > 0.2) + clusterIdx = []; return; end @@ -34,10 +36,15 @@ function clusterIdx = recursiveNCuts(anAffinityMat) secondSubClusters = recursiveNCuts(anAffinityMat(clusterTwoIndices, ... clusterTwoIndices)); - % Makes sure the IDs of the clusters of each half are unique - secondSubClusters = secondSubClusters + size(unique(firstSubClusters), 1); - % Re-merges the sub-cluster arrays - clusterIdx(clusterOneIndices) = firstSubClusters; - clusterIdx(clusterTwoIndices) = secondSubClusters; + if ~isempty(firstSubClusters) + clusterIdx(clusterOneIndices) = firstSubClusters; + end + if ~isempty(secondSubClusters) + clusterIdx(clusterTwoIndices) = secondSubClusters; + end + + % Makes sure the IDs of the clusters of each half are unique + clusterIdx(clusterTwoIndices) = clusterIdx(clusterTwoIndices) + ... + size(unique(clusterIdx(clusterOneIndices)), 1); end diff --git a/Assignment_2/report/report.tex b/Assignment_2/report/report.tex index 6004dbf..f05c665 100644 --- a/Assignment_2/report/report.tex +++ b/Assignment_2/report/report.tex @@ -17,7 +17,6 @@ \usepackage{multicol} \setlength{\columnsep}{1cm} -%\definecolor{shadecolor}{RGB}{237, 243, 182} \definecolor{shadecolor}{RGB}{0, 0, 0} \graphicspath{{res/}} %\usepackage{multirow} @@ -64,10 +63,6 @@ \date{\today} \pagestyle{fancy} -% \lhead{Kefalida} -% \rhead{Yposelido} -% \renewcommand{\headrulewidth}{0.4pt} -% \renewcommand{\footrulewidth}{0.4pt} \setlength{\headheight}{14pt} \hypersetup{colorlinks=true, linkcolor=black, urlcolor=blue, citecolor=blue} diff --git a/Assignment_2/report/res/demo1_f1.svg b/Assignment_2/report/res/demo1_f1.svg index be239de..2ad39fe 100644 --- a/Assignment_2/report/res/demo1_f1.svg +++ b/Assignment_2/report/res/demo1_f1.svg @@ -14,24 +14,24 @@ height="0.26458332mm" viewBox="0 0 3.175 0.26458332" version="1.1" - id="svg1171" + id="svg8" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo1_f1.svg"> + id="defs2"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="5.6" - inkscape:cx="10.36917" - inkscape:cy="3.1333524" + inkscape:zoom="11.2" + inkscape:cx="13.913924" + inkscape:cy="-13.274473" inkscape:document-units="mm" - inkscape:current-layer="g1193" + inkscape:current-layer="g835" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata5"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-113.80863,-86.845238)"> + transform="translate(-154.63006,-108.01191)"> + id="g863" + transform="matrix(0.26458333,0,0,0.26458333,130.28839,91.078572)"> + id="g835"> + transform="translate(92,64)"> + id="defs912"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="-0.73032781" - inkscape:cy="-9.3739436" + inkscape:zoom="11.2" + inkscape:cx="1.4226558" + inkscape:cy="-1.8423073" inkscape:document-units="mm" - inkscape:current-layer="g1356" + inkscape:current-layer="g940" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata915"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-97.933631,-131.44643)"> + transform="translate(-94.153869,-95.160714)"> + id="g968" + transform="matrix(0.26458333,0,0,0.26458333,69.812203,78.227381)"> + id="g940"> + transform="translate(92,64)"> + id="defs1017"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="5.9180979" - inkscape:cy="-5.3844426" + inkscape:zoom="5.6" + inkscape:cx="-17.138761" + inkscape:cy="-8.1588745" inkscape:document-units="mm" - inkscape:current-layer="g1461" + inkscape:current-layer="g1045" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1020"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-103.2253,-90.625)"> + transform="translate(-87.350297,-101.20833)"> + id="g1073" + transform="matrix(0.26458333,0,0,0.26458333,63.008631,84.275)"> + id="g1045"> + transform="translate(92,64)"> + id="defs1122"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.979899" - inkscape:cx="-79.759329" - inkscape:cy="94.151971" + inkscape:zoom="1.4" + inkscape:cx="75.29978" + inkscape:cy="-26.387806" inkscape:document-units="mm" - inkscape:current-layer="g1679" + inkscape:current-layer="g1150" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1125"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-82.323214,-131.54092)"> + transform="translate(-93.6625,-84.671875)"> + id="g1178" + transform="matrix(0.26458333,0,0,0.26458333,69.320834,77.263542)"> + id="g1150"> + id="defs1227"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="0.21603705" - inkscape:cy="-7.8787249" + inkscape:zoom="1.4" + inkscape:cx="-213.25747" + inkscape:cy="-106.24872" inkscape:document-units="mm" - inkscape:current-layer="g1784" + inkscape:current-layer="g1255" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1230"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-78.543452,-122.46949)"> + transform="translate(-70.983928,-104.32664)"> + id="g1283" + transform="matrix(0.26458333,0,0,0.26458333,46.642262,96.918304)"> + id="g1255"> + id="defs1332"> @@ -44,18 +44,18 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.98994949" - inkscape:cx="29.640542" - inkscape:cy="-15.028559" + inkscape:cx="-19.053753" + inkscape:cy="-63.957085" inkscape:document-units="mm" - inkscape:current-layer="g1889" + inkscape:current-layer="g1360" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1335"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-84.591072,-113.39806)"> + transform="translate(-95.930357,-100.54688)"> + id="g1388" + transform="matrix(0.26458333,0,0,0.26458333,71.588691,93.138542)"> + id="g1360"> + transform="translate(92,28)"> + id="defs1437"> @@ -44,18 +44,18 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.4" - inkscape:cx="14.542569" - inkscape:cy="1.8586477" + inkscape:cx="14.174037" + inkscape:cy="-63.910637" inkscape:document-units="mm" - inkscape:current-layer="g1994" + inkscape:current-layer="g1465" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1440"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-66.448214,-125.4933)"> + transform="translate(-21.847024,-71.064732)"> + id="g1493" + transform="matrix(0.26458333,0,0,0.26458333,-2.4946425,63.656399)"> + id="g1465"> + transform="translate(92,28)"> diff --git a/Assignment_2/report/res/demo2_e1_g.pdf_tex b/Assignment_2/report/res/demo2_e1_g.pdf_tex index bc59a91..3f906b0 100644 --- a/Assignment_2/report/res/demo2_e1_g.pdf_tex +++ b/Assignment_2/report/res/demo2_e1_g.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{656.24999173bp}% + \setlength{\unitlength}{619.4999922bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e1_g.svg b/Assignment_2/report/res/demo2_e1_g.svg index d9c5474..113ee6f 100644 --- a/Assignment_2/report/res/demo2_e1_g.svg +++ b/Assignment_2/report/res/demo2_e1_g.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="231.51041mm" - height="231.51041mm" - viewBox="0 0 231.51041 231.51041" + width="218.54584mm" + height="218.54584mm" + viewBox="0 0 218.54584 218.54584" version="1.1" - id="svg1544" + id="svg1548" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e1_g.svg"> + id="defs1542"> @@ -44,18 +44,18 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35" - inkscape:cx="450.42855" - inkscape:cy="99.000022" + inkscape:cx="525.42857" + inkscape:cy="284.0714" inkscape:document-units="mm" - inkscape:current-layer="g1566" + inkscape:current-layer="g1570" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1545"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(13.342555,56.483331)"> + transform="translate(33.186308,-5.448067)"> + id="g1598" + transform="matrix(0.26458333,0,0,0.26458333,-57.263391,-3.0185996)"> + id="g1570"> + transform="matrix(0.6608,0,0,0.6608,91,32)"> diff --git a/Assignment_2/report/res/demo2_e2_f1.pdf_tex b/Assignment_2/report/res/demo2_e2_f1.pdf_tex index 2c94db7..a8acc2a 100644 --- a/Assignment_2/report/res/demo2_e2_f1.pdf_tex +++ b/Assignment_2/report/res/demo2_e2_f1.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{257.99999675bp}% + \setlength{\unitlength}{37.49999953bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e2_f1.svg b/Assignment_2/report/res/demo2_e2_f1.svg index ff4ea71..9d6a6eb 100644 --- a/Assignment_2/report/res/demo2_e2_f1.svg +++ b/Assignment_2/report/res/demo2_e2_f1.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="91.016663mm" - height="91.016663mm" - viewBox="0 0 91.016663 91.016663" + width="13.229166mm" + height="13.229166mm" + viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2182" + id="svg1653" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e2_f1.svg"> + id="defs1647"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="269.67625" - inkscape:cy="-47.70273" + inkscape:zoom="3.959798" + inkscape:cx="2.9592968" + inkscape:cy="18.124089" inkscape:document-units="mm" - inkscape:current-layer="g2204" + inkscape:current-layer="g1675" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1650"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-18.539732,-20.397025)"> + transform="translate(-128.43631,-101.30283)"> + id="g1703" + transform="matrix(0.26458333,0,0,0.26458333,102.77173,93.894494)"> + id="g1675"> + transform="translate(97,28)"> diff --git a/Assignment_2/report/res/demo2_e2_f2.pdf_tex b/Assignment_2/report/res/demo2_e2_f2.pdf_tex index 2c115cb..214d369 100644 --- a/Assignment_2/report/res/demo2_e2_f2.pdf_tex +++ b/Assignment_2/report/res/demo2_e2_f2.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{257.99999675bp}% + \setlength{\unitlength}{37.49999953bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e2_f2.svg b/Assignment_2/report/res/demo2_e2_f2.svg index 2a30abe..e169314 100644 --- a/Assignment_2/report/res/demo2_e2_f2.svg +++ b/Assignment_2/report/res/demo2_e2_f2.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="91.016663mm" - height="91.016663mm" - viewBox="0 0 91.016663 91.016663" + width="13.229166mm" + height="13.229166mm" + viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2602" + id="svg1758" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e2_f2.svg"> + id="defs1752"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="247.07142" - inkscape:cy="-192.85713" + inkscape:zoom="1.4" + inkscape:cx="-246.76855" + inkscape:cy="-51.609149" inkscape:document-units="mm" - inkscape:current-layer="g2624" + inkscape:current-layer="g1780" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1755"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-40.462352,-6.789882)"> + transform="translate(-127.68035,-129.27306)"> + id="g1808" + transform="matrix(0.26458333,0,0,0.26458333,102.01577,121.86473)"> + id="g1780"> + transform="translate(97,28)"> diff --git a/Assignment_2/report/res/demo2_e2_f3.pdf_tex b/Assignment_2/report/res/demo2_e2_f3.pdf_tex index 6c5964c..b1804ef 100644 --- a/Assignment_2/report/res/demo2_e2_f3.pdf_tex +++ b/Assignment_2/report/res/demo2_e2_f3.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{257.99999675bp}% + \setlength{\unitlength}{37.49999953bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e2_f3.svg b/Assignment_2/report/res/demo2_e2_f3.svg index c019d09..44383ec 100644 --- a/Assignment_2/report/res/demo2_e2_f3.svg +++ b/Assignment_2/report/res/demo2_e2_f3.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="91.016663mm" - height="91.016663mm" - viewBox="0 0 91.016663 91.016663" + width="13.229166mm" + height="13.229166mm" + viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2287" + id="svg1863" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e2_f3.svg"> + id="defs1857"> @@ -44,18 +44,18 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.7" - inkscape:cx="68.632135" - inkscape:cy="43.856738" + inkscape:cx="38.392288" + inkscape:cy="-15.150628" inkscape:document-units="mm" - inkscape:current-layer="g2309" + inkscape:current-layer="g1885" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1860"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-82.039732,-49.879168)"> + transform="translate(-71.739881,-119.44568)"> + id="g1913" + transform="matrix(0.26458333,0,0,0.26458333,47.398215,112.03735)"> + id="g1885"> + transform="translate(92,28)"> diff --git a/Assignment_2/report/res/demo2_e2_f4.pdf_tex b/Assignment_2/report/res/demo2_e2_f4.pdf_tex index 692fe8f..06dc764 100644 --- a/Assignment_2/report/res/demo2_e2_f4.pdf_tex +++ b/Assignment_2/report/res/demo2_e2_f4.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{257.99999675bp}% + \setlength{\unitlength}{37.49999953bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e2_f4.svg b/Assignment_2/report/res/demo2_e2_f4.svg index 08c0c5e..c1589c0 100644 --- a/Assignment_2/report/res/demo2_e2_f4.svg +++ b/Assignment_2/report/res/demo2_e2_f4.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="91.016663mm" - height="91.016663mm" - viewBox="0 0 91.016663 91.016663" + width="13.229166mm" + height="13.229166mm" + viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2773" + id="svg1968" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e2_f4.svg"> + id="defs1962"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="87.071435" - inkscape:cy="-41.42856" + inkscape:zoom="1.4" + inkscape:cx="-140.46254" + inkscape:cy="-102.82594" inkscape:document-units="mm" - inkscape:current-layer="g2795" + inkscape:current-layer="g1990" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata1965"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-82.795682,-46.855358)"> + transform="translate(-99.710119,-111.88616)"> + id="g2018" + transform="matrix(0.26458333,0,0,0.26458333,75.368453,104.47783)"> + id="g1990"> + transform="translate(92,28)"> diff --git a/Assignment_2/report/res/demo2_e2_f5.pdf_tex b/Assignment_2/report/res/demo2_e2_f5.pdf_tex index d854793..61a145a 100644 --- a/Assignment_2/report/res/demo2_e2_f5.pdf_tex +++ b/Assignment_2/report/res/demo2_e2_f5.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{257.99999675bp}% + \setlength{\unitlength}{37.49999953bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e2_f5.svg b/Assignment_2/report/res/demo2_e2_f5.svg index 228bead..3bd53b8 100644 --- a/Assignment_2/report/res/demo2_e2_f5.svg +++ b/Assignment_2/report/res/demo2_e2_f5.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="91.016663mm" - height="91.016663mm" - viewBox="0 0 91.016663 91.016663" + width="13.229166mm" + height="13.229166mm" + viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2392" + id="svg2073" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e2_f5.svg"> + id="defs2067"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="169.92858" - inkscape:cy="-9.9999883" + inkscape:zoom="0.98994949" + inkscape:cx="86.83895" + inkscape:cy="-57.213095" inkscape:document-units="mm" - inkscape:current-layer="g2414" + inkscape:current-layer="g2095" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata2070"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-60.873062,-55.170834)"> + transform="translate(-56.620833,-82.404018)"> + id="g2123" + transform="matrix(0.26458333,0,0,0.26458333,32.279167,74.995685)"> + id="g2095"> + transform="translate(92,28)"> diff --git a/Assignment_2/report/res/demo2_e2_f6.pdf_tex b/Assignment_2/report/res/demo2_e2_f6.pdf_tex index 7113f6e..e605d81 100644 --- a/Assignment_2/report/res/demo2_e2_f6.pdf_tex +++ b/Assignment_2/report/res/demo2_e2_f6.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{257.99999675bp}% + \setlength{\unitlength}{37.49999953bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e2_f6.svg b/Assignment_2/report/res/demo2_e2_f6.svg index 7d4bcdf..eeca51c 100644 --- a/Assignment_2/report/res/demo2_e2_f6.svg +++ b/Assignment_2/report/res/demo2_e2_f6.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="91.016663mm" - height="91.016663mm" - viewBox="0 0 91.016663 91.016663" + width="13.229166mm" + height="13.229166mm" + viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2878" + id="svg2178" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e2_f6.svg"> + id="defs2172"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="309.92856" - inkscape:cy="-349.99999" + inkscape:zoom="1.4" + inkscape:cx="6.1453154" + inkscape:cy="-94.640227" inkscape:document-units="mm" - inkscape:current-layer="g2900" + inkscape:current-layer="g2200" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata2175"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-23.831402,34.787499)"> + transform="translate(-114.07321,-86.18378)"> + id="g2228" + transform="matrix(0.26458333,0,0,0.26458333,88.408631,78.775447)"> + id="g2200"> + transform="translate(97,28)"> diff --git a/Assignment_2/report/res/demo2_e2_f7.pdf_tex b/Assignment_2/report/res/demo2_e2_f7.pdf_tex index 31ea45b..06249f9 100644 --- a/Assignment_2/report/res/demo2_e2_f7.pdf_tex +++ b/Assignment_2/report/res/demo2_e2_f7.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{257.99999675bp}% + \setlength{\unitlength}{37.49999953bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e2_f7.svg b/Assignment_2/report/res/demo2_e2_f7.svg index 76272ef..48fa736 100644 --- a/Assignment_2/report/res/demo2_e2_f7.svg +++ b/Assignment_2/report/res/demo2_e2_f7.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="91.016663mm" - height="91.016663mm" - viewBox="0 0 91.016663 91.016663" + width="13.229166mm" + height="13.229166mm" + viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2497" + id="svg2283" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e2_f7.svg"> + id="defs2277"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="295.64285" - inkscape:cy="-169.99999" + inkscape:zoom="0.98994949" + inkscape:cx="-13.302495" + inkscape:cy="-36.616261" inkscape:document-units="mm" - inkscape:current-layer="g2519" + inkscape:current-layer="g2305" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata2280"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-27.611162,-12.837501)"> + transform="translate(-108.0256,-99.03497)"> + id="g2333" + transform="matrix(0.26458333,0,0,0.26458333,82.361012,91.626637)"> + id="g2305"> + transform="translate(97,28)"> diff --git a/Assignment_2/report/res/demo2_e2_g.pdf_tex b/Assignment_2/report/res/demo2_e2_g.pdf_tex index 45c458f..db0d3a7 100644 --- a/Assignment_2/report/res/demo2_e2_g.pdf_tex +++ b/Assignment_2/report/res/demo2_e2_g.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{656.24999173bp}% + \setlength{\unitlength}{619.4999922bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo2_e2_g.svg b/Assignment_2/report/res/demo2_e2_g.svg index c1aab38..3d8995c 100644 --- a/Assignment_2/report/res/demo2_e2_g.svg +++ b/Assignment_2/report/res/demo2_e2_g.svg @@ -10,28 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="231.51041mm" - height="231.51041mm" - viewBox="0 0 231.51041 231.51041" + width="218.54584mm" + height="218.54584mm" + viewBox="0 0 218.54584 218.54584" version="1.1" - id="svg2077" + id="svg2388" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo2_e2_g.svg"> + id="defs2382"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="481.01434" - inkscape:cy="495.48548" + inkscape:zoom="0.7" + inkscape:cx="463.31658" + inkscape:cy="330.68142" inkscape:document-units="mm" - inkscape:current-layer="g2099" + inkscape:current-layer="g2410" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata2385"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-1.7764849,-42.546431)"> + transform="translate(24.11488,36.885266)"> + id="g2438" + transform="matrix(0.26458333,0,0,0.26458333,-48.191963,-45.351933)"> + id="g2410"> + transform="matrix(0.6608,0,0,0.6608,91,32)"> diff --git a/Assignment_2/report/res/demo3a_e1_f1.svg b/Assignment_2/report/res/demo3a_e1_f1.svg index c4b2bf2..a5cd534 100644 --- a/Assignment_2/report/res/demo3a_e1_f1.svg +++ b/Assignment_2/report/res/demo3a_e1_f1.svg @@ -14,16 +14,16 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2991" + id="svg2493" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e1_f1.svg"> + id="defs2487"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="2.8" - inkscape:cx="-20.965078" - inkscape:cy="18.23499" + inkscape:zoom="1.4" + inkscape:cx="-53.463031" + inkscape:cy="-32.536871" inkscape:document-units="mm" - inkscape:current-layer="g3013" + inkscape:current-layer="g2515" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata2490"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-117.85298,-130.78497)"> + transform="translate(-123.9006,-78.624256)"> + id="g2543" + transform="matrix(0.26458333,0,0,0.26458333,99.558929,71.215923)"> + id="g2515"> + id="defs2592"> - - - - - - - - - - - - @@ -76,18 +44,18 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.7" - inkscape:cx="10.306069" - inkscape:cy="-218.76737" + inkscape:cx="13.170477" + inkscape:cy="-73.89198" inkscape:document-units="mm" - inkscape:current-layer="layer1" + inkscape:current-layer="g2620" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata2595"> @@ -102,55 +70,45 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-96.572917,-79.096726)"> + transform="translate(-69.472024,-90.719494)"> + style="font-style:normal;font-weight:normal;font-size:12px;font-family:Dialog;color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="g2648" + transform="matrix(0.26458333,0,0,0.26458333,45.130358,83.311161)"> + id="g2620"> + + + + + + + + - - - - - - - - - - - - - + id="g2618" + style="color-interpolation:sRGB;fill:#000000;fill-opacity:0;stroke:#000000;stroke-opacity:0;color-rendering:optimizeSpeed;image-rendering:optimizeSpeed;shape-rendering:crispEdges;text-rendering:optimizeSpeed" + transform="translate(92,28)"> + diff --git a/Assignment_2/report/res/demo3a_e1_f3.svg b/Assignment_2/report/res/demo3a_e1_f3.svg index 370b556..279c516 100644 --- a/Assignment_2/report/res/demo3a_e1_f3.svg +++ b/Assignment_2/report/res/demo3a_e1_f3.svg @@ -14,24 +14,24 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg3305" + id="svg2703" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e1_f3.svg"> + id="defs2697"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="-23.714062" - inkscape:cy="-118.59101" + inkscape:zoom="0.98994949" + inkscape:cx="74.048495" + inkscape:cy="-16.341411" inkscape:document-units="mm" - inkscape:current-layer="g3327" + inkscape:current-layer="g2725" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata2700"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-120.87679,-71.064732)"> + transform="translate(-71.739881,-105.83854)"> + id="g2753" + transform="matrix(0.26458333,0,0,0.26458333,46.075298,98.430209)"> + id="g2725"> + transform="translate(97,28)"> + id="defs2802"> @@ -44,18 +44,18 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.98994949" - inkscape:cx="-4.590818" - inkscape:cy="-82.087318" + inkscape:cx="-54.163986" + inkscape:cy="-102.73665" inkscape:document-units="mm" - inkscape:current-layer="g3432" + inkscape:current-layer="g2830" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata2805"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-117.09702,-67.28497)"> + transform="translate(-109.5375,-77.112351)"> + id="g2858" + transform="matrix(0.26458333,0,0,0.26458333,83.872917,69.704018)"> + id="g2830"> + transform="translate(97,28)"> diff --git a/Assignment_2/report/res/demo3a_e2_f1.pdf_tex b/Assignment_2/report/res/demo3a_e2_f1.pdf_tex index 02944b0..9e4cdfd 100644 --- a/Assignment_2/report/res/demo3a_e2_f1.pdf_tex +++ b/Assignment_2/report/res/demo3a_e2_f1.pdf_tex @@ -38,7 +38,7 @@ \newcommand*\fsize{\dimexpr\f@size pt\relax}% \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% \ifx\svgwidth\undefined% - \setlength{\unitlength}{257.99999675bp}% + \setlength{\unitlength}{37.49999953bp}% \ifx\svgscale\undefined% \relax% \else% diff --git a/Assignment_2/report/res/demo3a_e2_f1.svg b/Assignment_2/report/res/demo3a_e2_f1.svg index a9e4320..f76f0b2 100644 --- a/Assignment_2/report/res/demo3a_e2_f1.svg +++ b/Assignment_2/report/res/demo3a_e2_f1.svg @@ -10,46 +10,30 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="91.016663mm" - height="91.016663mm" - viewBox="0 0 91.016663 91.016663" + width="13.229166mm" + height="13.229166mm" + viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg1732" + id="svg2913" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e2_f1.svg"> + id="defs2907"> + id="clipPath1" + clipPathUnits="userSpaceOnUse"> + id="path2916" + d="M 0,0 H 246 V 141 H 0 Z" + inkscape:connector-curvature="0" /> + id="clipPath2" + clipPathUnits="userSpaceOnUse"> - - - - - - + inkscape:connector-curvature="0" /> + id="metadata2910"> @@ -86,50 +70,45 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-45.205953,-85.182143)"> + transform="translate(-123.9006,-90.719494)"> + style="font-style:normal;font-weight:normal;font-size:12px;font-family:Dialog;color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="g2963" + transform="matrix(0.26458333,0,0,0.26458333,98.236012,83.311161)"> + id="g2935"> + + + + + + + + - - - - - - - - - - - + id="g2933" + style="color-interpolation:sRGB;fill:#000000;fill-opacity:0;stroke:#000000;stroke-opacity:0;color-rendering:optimizeSpeed;image-rendering:optimizeSpeed;shape-rendering:crispEdges;text-rendering:optimizeSpeed" + transform="translate(97,28)"> + diff --git a/Assignment_2/report/res/demo3a_e2_f2.svg b/Assignment_2/report/res/demo3a_e2_f2.svg index 9ad30ee..5ac507f 100644 --- a/Assignment_2/report/res/demo3a_e2_f2.svg +++ b/Assignment_2/report/res/demo3a_e2_f2.svg @@ -14,16 +14,16 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg1018" + id="svg3018" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e2_f2.svg"> + id="defs3012"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="31.213898" - inkscape:cy="-25.606831" + inkscape:zoom="0.98994949" + inkscape:cx="-102.05659" + inkscape:cy="-157.78952" inkscape:document-units="mm" - inkscape:current-layer="g1040" + inkscape:current-layer="g3040" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3015"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-46.793452,-71.064732)"> + transform="translate(-89.882738,-88.451637)"> + id="g3068" + transform="matrix(0.26458333,0,0,0.26458333,65.541072,81.043304)"> + id="g3040"> diff --git a/Assignment_2/report/res/demo3a_e2_f3.svg b/Assignment_2/report/res/demo3a_e2_f3.svg index b914a15..8cc8946 100644 --- a/Assignment_2/report/res/demo3a_e2_f3.svg +++ b/Assignment_2/report/res/demo3a_e2_f3.svg @@ -14,24 +14,24 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg1141" + id="svg3123" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e2_f3.svg"> + id="defs3117"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="2.8" - inkscape:cx="-37.425117" - inkscape:cy="32.875119" + inkscape:zoom="0.98994949" + inkscape:cx="67.298242" + inkscape:cy="-33.241049" inkscape:document-units="mm" - inkscape:current-layer="g1163" + inkscape:current-layer="g3145" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3120"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-136.75179,-127.00521)"> + transform="translate(-84.591072,-96.011161)"> + id="g3173" + transform="matrix(0.26458333,0,0,0.26458333,58.926489,88.602828)"> + id="g3145"> + transform="translate(97,28)"> diff --git a/Assignment_2/report/res/demo3a_e2_f4.svg b/Assignment_2/report/res/demo3a_e2_f4.svg index d2fb449..439227d 100644 --- a/Assignment_2/report/res/demo3a_e2_f4.svg +++ b/Assignment_2/report/res/demo3a_e2_f4.svg @@ -14,16 +14,16 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg1246" + id="svg3228" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e2_f4.svg"> + id="defs3222"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -44,18 +44,18 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.4" - inkscape:cx="5.3331457" - inkscape:cy="-6.6692225" + inkscape:cx="50.368582" + inkscape:cy="-47.571275" inkscape:document-units="mm" - inkscape:current-layer="g1268" + inkscape:current-layer="g3250" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3225"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-108.0256,-111.88616)"> + transform="translate(-73.251786,-79.380208)"> + id="g3278" + transform="matrix(0.26458333,0,0,0.26458333,47.587203,71.971875)"> + id="g3250"> diff --git a/Assignment_2/report/res/demo3a_e2_f5.svg b/Assignment_2/report/res/demo3a_e2_f5.svg index 19f7342..0f6979a 100644 --- a/Assignment_2/report/res/demo3a_e2_f5.svg +++ b/Assignment_2/report/res/demo3a_e2_f5.svg @@ -14,16 +14,16 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg1351" + id="svg3333" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e2_f5.svg"> + id="defs3327"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="57.428571" - inkscape:cy="-149.64285" + inkscape:zoom="1.4" + inkscape:cx="4.6542938" + inkscape:cy="-4.5401894" inkscape:document-units="mm" - inkscape:current-layer="g1373" + inkscape:current-layer="g3355" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3330"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-90.63869,-96.011161)"> + transform="translate(-85.347024,-122.46949)"> + id="g3383" + transform="matrix(0.26458333,0,0,0.26458333,61.005358,115.06116)"> + id="g3355"> diff --git a/Assignment_2/report/res/demo3a_e2_f6.svg b/Assignment_2/report/res/demo3a_e2_f6.svg index 18b0026..c0b7125 100644 --- a/Assignment_2/report/res/demo3a_e2_f6.svg +++ b/Assignment_2/report/res/demo3a_e2_f6.svg @@ -14,16 +14,16 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg1456" + id="svg3438" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e2_f6.svg"> + id="defs3432"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="-44.909498" - inkscape:cy="-60.810655" + inkscape:zoom="1.4" + inkscape:cx="-4.5466916" + inkscape:cy="-156.24722" inkscape:document-units="mm" - inkscape:current-layer="g1478" + inkscape:current-layer="g3460" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3435"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-127.68035,-71.820684)"> + transform="translate(-52.085119,-77.868303)"> + id="g3488" + transform="matrix(0.26458333,0,0,0.26458333,26.420536,70.45997)"> + id="g3460"> diff --git a/Assignment_2/report/res/demo3a_e2_f7.svg b/Assignment_2/report/res/demo3a_e2_f7.svg index ccad244..07a62a2 100644 --- a/Assignment_2/report/res/demo3a_e2_f7.svg +++ b/Assignment_2/report/res/demo3a_e2_f7.svg @@ -14,16 +14,16 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg1561" + id="svg3543" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3a_e2_f7.svg"> + id="defs3537"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.979899" - inkscape:cx="21.614872" - inkscape:cy="9.4223165" + inkscape:zoom="1.4" + inkscape:cx="-188.88017" + inkscape:cy="-91.336425" inkscape:document-units="mm" - inkscape:current-layer="g1583" + inkscape:current-layer="g3565" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3540"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-48.305357,-54.43378)"> + transform="translate(-126.92441,-99.03497)"> + id="g3593" + transform="matrix(0.26458333,0,0,0.26458333,102.58274,91.626637)"> + id="g3565"> diff --git a/Assignment_2/report/res/demo3b_e1_f1.svg b/Assignment_2/report/res/demo3b_e1_f1.svg index c6f2817..0196f00 100644 --- a/Assignment_2/report/res/demo3b_e1_f1.svg +++ b/Assignment_2/report/res/demo3b_e1_f1.svg @@ -14,24 +14,24 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg1854" + id="svg3648" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3b_e1_f1.svg"> + id="defs3642"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="-59.751662" - inkscape:cy="-15.677553" + inkscape:zoom="0.98994949" + inkscape:cx="40.109409" + inkscape:cy="-53.12533" inkscape:document-units="mm" - inkscape:current-layer="g1876" + inkscape:current-layer="g3670" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3645"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-148.09107,-109.6183)"> + transform="translate(-80.055357,-92.231399)"> + id="g3698" + transform="matrix(0.26458333,0,0,0.26458333,55.713691,84.823066)"> + id="g3670"> + transform="translate(92,28)"> + id="defs3747"> @@ -31,7 +31,7 @@ id="clipPath2" clipPathUnits="userSpaceOnUse"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="24.88218" - inkscape:cy="-49.401281" + inkscape:zoom="0.98994949" + inkscape:cx="51.944083" + inkscape:cy="-54.251423" inkscape:document-units="mm" - inkscape:current-layer="g2459" + inkscape:current-layer="g3775" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3750"> @@ -70,38 +70,38 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-113.31726,-78.624256)"> + transform="translate(-72.495833,-121.71354)"> + id="g3803" + transform="matrix(0.26458333,0,0,0.26458333,48.154167,114.30521)"> + id="g3775"> + id="defs3852"> - - - - - - - - - - - - @@ -75,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="129.14285" - inkscape:cy="-50.857144" + inkscape:zoom="0.98994949" + inkscape:cx="11.443659" + inkscape:cy="-64.098534" inkscape:document-units="mm" - inkscape:current-layer="layer1" + inkscape:current-layer="g3880" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3855"> @@ -102,55 +70,45 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-71.664286,-44.360715)"> + transform="translate(-104.24583,-75.600446)"> + style="font-style:normal;font-weight:normal;font-size:12px;font-family:Dialog;color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="g3908" + transform="matrix(0.26458333,0,0,0.26458333,79.904167,68.192113)"> + id="g3880"> + + + + + + + + - - - - - - - - - - - - - + id="g3878" + style="color-interpolation:sRGB;fill:#000000;fill-opacity:0;stroke:#000000;stroke-opacity:0;color-rendering:optimizeSpeed;image-rendering:optimizeSpeed;shape-rendering:crispEdges;text-rendering:optimizeSpeed" + transform="translate(92,28)"> + diff --git a/Assignment_2/report/res/demo3b_e2_f2.svg b/Assignment_2/report/res/demo3b_e2_f2.svg index 4ca79f1..f6f10c0 100644 --- a/Assignment_2/report/res/demo3b_e2_f2.svg +++ b/Assignment_2/report/res/demo3b_e2_f2.svg @@ -14,24 +14,24 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2122" + id="svg3963" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3b_e2_f2.svg"> + id="defs3957"> @@ -44,18 +44,18 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.4" - inkscape:cx="-20.726951" - inkscape:cy="0.44643897" + inkscape:cx="23.160548" + inkscape:cy="-22.425573" inkscape:document-units="mm" - inkscape:current-layer="g2144" + inkscape:current-layer="g3985" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata3960"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-142.79941,-136.07663)"> + transform="translate(-101.97798,-105.83854)"> + id="g4013" + transform="matrix(0.26458333,0,0,0.26458333,76.313393,98.430209)"> + id="g3985"> + transform="translate(97,28)"> diff --git a/Assignment_2/report/res/demo3b_e2_f3.svg b/Assignment_2/report/res/demo3b_e2_f3.svg index 3b222e5..66ee588 100644 --- a/Assignment_2/report/res/demo3b_e2_f3.svg +++ b/Assignment_2/report/res/demo3b_e2_f3.svg @@ -14,24 +14,24 @@ height="13.229166mm" viewBox="0 0 13.229166 13.229166" version="1.1" - id="svg2227" + id="svg4068" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="demo3b_e2_f3.svg"> + id="defs4062"> @@ -43,19 +43,19 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="40.235207" - inkscape:cy="-109.69373" + inkscape:zoom="1.4" + inkscape:cx="20.259842" + inkscape:cy="-46.802617" inkscape:document-units="mm" - inkscape:current-layer="g2249" + inkscape:current-layer="g4090" showgrid="false" - inkscape:window-width="1680" - inkscape:window-height="1022" - inkscape:window-x="1920" - inkscape:window-y="0" + inkscape:window-width="1920" + inkscape:window-height="1025" + inkscape:window-x="0" + inkscape:window-y="27" inkscape:window-maximized="1" /> + id="metadata4065"> @@ -70,42 +70,42 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-86.858928,-71.820684)"> + transform="translate(-91.394643,-84.671875)"> + id="g4118" + transform="matrix(0.26458333,0,0,0.26458333,65.73006,77.263542)"> + id="g4090"> + transform="translate(97,28)"> diff --git a/Assignment_2/report/res/demo3c_e1_f1.pdf_tex b/Assignment_2/report/res/demo3c_e1_f1.pdf_tex new file mode 100644 index 0000000..f8852df --- /dev/null +++ b/Assignment_2/report/res/demo3c_e1_f1.pdf_tex @@ -0,0 +1,58 @@ +%% Creator: Inkscape inkscape 0.92.3, www.inkscape.org +%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010 +%% Accompanies image file 'demo3c_e1_f1.pdf' (pdf, eps, ps) +%% +%% To include the image in your LaTeX document, write +%% \input{.pdf_tex} +%% instead of +%% \includegraphics{.pdf} +%% To scale the image, write +%% \def\svgwidth{} +%% \input{.pdf_tex} +%% instead of +%% \includegraphics[width=]{.pdf} +%% +%% Images with a different path to the parent latex file can +%% be accessed with the `import' package (which may need to be +%% installed) using +%% \usepackage{import} +%% in the preamble, and then including the image with +%% \import{}{.pdf_tex} +%% Alternatively, one can specify +%% \graphicspath{{/}} +%% +%% For more information, please see info/svg-inkscape on CTAN: +%% http://tug.ctan.org/tex-archive/info/svg-inkscape +%% +\begingroup% + \makeatletter% + \providecommand\color[2][]{% + \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}% + \renewcommand\color[2][]{}% + }% + \providecommand\transparent[1]{% + \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}% + \renewcommand\transparent[1]{}% + }% + \providecommand\rotatebox[2]{#2}% + \newcommand*\fsize{\dimexpr\f@size pt\relax}% + \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% + \ifx\svgwidth\undefined% + \setlength{\unitlength}{37.49999953bp}% + \ifx\svgscale\undefined% + \relax% + \else% + \setlength{\unitlength}{\unitlength * \real{\svgscale}}% + \fi% + \else% + \setlength{\unitlength}{\svgwidth}% + \fi% + \global\let\svgwidth\undefined% + \global\let\svgscale\undefined% + \makeatother% + \begin{picture}(1,1)% + \lineheight{1}% + \setlength\tabcolsep{0pt}% + \put(0,0){\includegraphics[width=\unitlength,page=1]{demo3c_e1_f1.pdf}}% + \end{picture}% +\endgroup% diff --git a/Assignment_2/report/res/demo3c_e1_f1.svg b/Assignment_2/report/res/demo3c_e1_f1.svg new file mode 100644 index 0000000..ba47622 --- /dev/null +++ b/Assignment_2/report/res/demo3c_e1_f1.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Assignment_2/report/res/demo3c_e1_f2.pdf_tex b/Assignment_2/report/res/demo3c_e1_f2.pdf_tex new file mode 100644 index 0000000..e62097b --- /dev/null +++ b/Assignment_2/report/res/demo3c_e1_f2.pdf_tex @@ -0,0 +1,58 @@ +%% Creator: Inkscape inkscape 0.92.3, www.inkscape.org +%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010 +%% Accompanies image file 'demo3c_e1_f2.pdf' (pdf, eps, ps) +%% +%% To include the image in your LaTeX document, write +%% \input{.pdf_tex} +%% instead of +%% \includegraphics{.pdf} +%% To scale the image, write +%% \def\svgwidth{} +%% \input{.pdf_tex} +%% instead of +%% \includegraphics[width=]{.pdf} +%% +%% Images with a different path to the parent latex file can +%% be accessed with the `import' package (which may need to be +%% installed) using +%% \usepackage{import} +%% in the preamble, and then including the image with +%% \import{}{.pdf_tex} +%% Alternatively, one can specify +%% \graphicspath{{/}} +%% +%% For more information, please see info/svg-inkscape on CTAN: +%% http://tug.ctan.org/tex-archive/info/svg-inkscape +%% +\begingroup% + \makeatletter% + \providecommand\color[2][]{% + \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}% + \renewcommand\color[2][]{}% + }% + \providecommand\transparent[1]{% + \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}% + \renewcommand\transparent[1]{}% + }% + \providecommand\rotatebox[2]{#2}% + \newcommand*\fsize{\dimexpr\f@size pt\relax}% + \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% + \ifx\svgwidth\undefined% + \setlength{\unitlength}{37.49999953bp}% + \ifx\svgscale\undefined% + \relax% + \else% + \setlength{\unitlength}{\unitlength * \real{\svgscale}}% + \fi% + \else% + \setlength{\unitlength}{\svgwidth}% + \fi% + \global\let\svgwidth\undefined% + \global\let\svgscale\undefined% + \makeatother% + \begin{picture}(1,1)% + \lineheight{1}% + \setlength\tabcolsep{0pt}% + \put(0,0){\includegraphics[width=\unitlength,page=1]{demo3c_e1_f2.pdf}}% + \end{picture}% +\endgroup% diff --git a/Assignment_2/report/res/demo3c_e1_f2.svg b/Assignment_2/report/res/demo3c_e1_f2.svg new file mode 100644 index 0000000..1fa7f33 --- /dev/null +++ b/Assignment_2/report/res/demo3c_e1_f2.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Assignment_2/report/res/demo3c_e2_f1.pdf_tex b/Assignment_2/report/res/demo3c_e2_f1.pdf_tex new file mode 100644 index 0000000..ac9fdf8 --- /dev/null +++ b/Assignment_2/report/res/demo3c_e2_f1.pdf_tex @@ -0,0 +1,58 @@ +%% Creator: Inkscape inkscape 0.92.3, www.inkscape.org +%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010 +%% Accompanies image file 'demo3c_e2_f1.pdf' (pdf, eps, ps) +%% +%% To include the image in your LaTeX document, write +%% \input{.pdf_tex} +%% instead of +%% \includegraphics{.pdf} +%% To scale the image, write +%% \def\svgwidth{} +%% \input{.pdf_tex} +%% instead of +%% \includegraphics[width=]{.pdf} +%% +%% Images with a different path to the parent latex file can +%% be accessed with the `import' package (which may need to be +%% installed) using +%% \usepackage{import} +%% in the preamble, and then including the image with +%% \import{}{.pdf_tex} +%% Alternatively, one can specify +%% \graphicspath{{/}} +%% +%% For more information, please see info/svg-inkscape on CTAN: +%% http://tug.ctan.org/tex-archive/info/svg-inkscape +%% +\begingroup% + \makeatletter% + \providecommand\color[2][]{% + \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}% + \renewcommand\color[2][]{}% + }% + \providecommand\transparent[1]{% + \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}% + \renewcommand\transparent[1]{}% + }% + \providecommand\rotatebox[2]{#2}% + \newcommand*\fsize{\dimexpr\f@size pt\relax}% + \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% + \ifx\svgwidth\undefined% + \setlength{\unitlength}{37.49999953bp}% + \ifx\svgscale\undefined% + \relax% + \else% + \setlength{\unitlength}{\unitlength * \real{\svgscale}}% + \fi% + \else% + \setlength{\unitlength}{\svgwidth}% + \fi% + \global\let\svgwidth\undefined% + \global\let\svgscale\undefined% + \makeatother% + \begin{picture}(1,1)% + \lineheight{1}% + \setlength\tabcolsep{0pt}% + \put(0,0){\includegraphics[width=\unitlength,page=1]{demo3c_e2_f1.pdf}}% + \end{picture}% +\endgroup% diff --git a/Assignment_2/report/res/demo3c_e2_f1.svg b/Assignment_2/report/res/demo3c_e2_f1.svg new file mode 100644 index 0000000..0231d01 --- /dev/null +++ b/Assignment_2/report/res/demo3c_e2_f1.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Assignment_2/report/res/demo3c_e2_f2.pdf_tex b/Assignment_2/report/res/demo3c_e2_f2.pdf_tex new file mode 100644 index 0000000..f7adafb --- /dev/null +++ b/Assignment_2/report/res/demo3c_e2_f2.pdf_tex @@ -0,0 +1,58 @@ +%% Creator: Inkscape inkscape 0.92.3, www.inkscape.org +%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010 +%% Accompanies image file 'demo3c_e2_f2.pdf' (pdf, eps, ps) +%% +%% To include the image in your LaTeX document, write +%% \input{.pdf_tex} +%% instead of +%% \includegraphics{.pdf} +%% To scale the image, write +%% \def\svgwidth{} +%% \input{.pdf_tex} +%% instead of +%% \includegraphics[width=]{.pdf} +%% +%% Images with a different path to the parent latex file can +%% be accessed with the `import' package (which may need to be +%% installed) using +%% \usepackage{import} +%% in the preamble, and then including the image with +%% \import{}{.pdf_tex} +%% Alternatively, one can specify +%% \graphicspath{{/}} +%% +%% For more information, please see info/svg-inkscape on CTAN: +%% http://tug.ctan.org/tex-archive/info/svg-inkscape +%% +\begingroup% + \makeatletter% + \providecommand\color[2][]{% + \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}% + \renewcommand\color[2][]{}% + }% + \providecommand\transparent[1]{% + \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}% + \renewcommand\transparent[1]{}% + }% + \providecommand\rotatebox[2]{#2}% + \newcommand*\fsize{\dimexpr\f@size pt\relax}% + \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% + \ifx\svgwidth\undefined% + \setlength{\unitlength}{37.49999953bp}% + \ifx\svgscale\undefined% + \relax% + \else% + \setlength{\unitlength}{\unitlength * \real{\svgscale}}% + \fi% + \else% + \setlength{\unitlength}{\svgwidth}% + \fi% + \global\let\svgwidth\undefined% + \global\let\svgscale\undefined% + \makeatother% + \begin{picture}(1,1)% + \lineheight{1}% + \setlength\tabcolsep{0pt}% + \put(0,0){\includegraphics[width=\unitlength,page=1]{demo3c_e2_f2.pdf}}% + \end{picture}% +\endgroup% diff --git a/Assignment_2/report/res/demo3c_e2_f2.svg b/Assignment_2/report/res/demo3c_e2_f2.svg new file mode 100644 index 0000000..acee312 --- /dev/null +++ b/Assignment_2/report/res/demo3c_e2_f2.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Assignment_2/report/res/demo3c_e2_f3.pdf_tex b/Assignment_2/report/res/demo3c_e2_f3.pdf_tex new file mode 100644 index 0000000..b97c06a --- /dev/null +++ b/Assignment_2/report/res/demo3c_e2_f3.pdf_tex @@ -0,0 +1,58 @@ +%% Creator: Inkscape inkscape 0.92.3, www.inkscape.org +%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010 +%% Accompanies image file 'demo3c_e2_f3.pdf' (pdf, eps, ps) +%% +%% To include the image in your LaTeX document, write +%% \input{.pdf_tex} +%% instead of +%% \includegraphics{.pdf} +%% To scale the image, write +%% \def\svgwidth{} +%% \input{.pdf_tex} +%% instead of +%% \includegraphics[width=]{.pdf} +%% +%% Images with a different path to the parent latex file can +%% be accessed with the `import' package (which may need to be +%% installed) using +%% \usepackage{import} +%% in the preamble, and then including the image with +%% \import{}{.pdf_tex} +%% Alternatively, one can specify +%% \graphicspath{{/}} +%% +%% For more information, please see info/svg-inkscape on CTAN: +%% http://tug.ctan.org/tex-archive/info/svg-inkscape +%% +\begingroup% + \makeatletter% + \providecommand\color[2][]{% + \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}% + \renewcommand\color[2][]{}% + }% + \providecommand\transparent[1]{% + \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}% + \renewcommand\transparent[1]{}% + }% + \providecommand\rotatebox[2]{#2}% + \newcommand*\fsize{\dimexpr\f@size pt\relax}% + \newcommand*\lineheight[1]{\fontsize{\fsize}{#1\fsize}\selectfont}% + \ifx\svgwidth\undefined% + \setlength{\unitlength}{37.49999953bp}% + \ifx\svgscale\undefined% + \relax% + \else% + \setlength{\unitlength}{\unitlength * \real{\svgscale}}% + \fi% + \else% + \setlength{\unitlength}{\svgwidth}% + \fi% + \global\let\svgwidth\undefined% + \global\let\svgscale\undefined% + \makeatother% + \begin{picture}(1,1)% + \lineheight{1}% + \setlength\tabcolsep{0pt}% + \put(0,0){\includegraphics[width=\unitlength,page=1]{demo3c_e2_f3.pdf}}% + \end{picture}% +\endgroup% diff --git a/Assignment_2/report/res/demo3c_e2_f3.svg b/Assignment_2/report/res/demo3c_e2_f3.svg new file mode 100644 index 0000000..4fa33e2 --- /dev/null +++ b/Assignment_2/report/res/demo3c_e2_f3.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + +