TransWikia.com

Draw an aircraft with Tikz

TeX - LaTeX Asked on April 26, 2021

I want to draw a plane using the Tikz tool.
You will find, attached, a screenshot.

enter image description here

8 Answers

I would politely discourage anyone from drawing extremely technical drawings like this one using pure LaTeX (TikZ or PStricks). Here I'm actually referencing abstract/non-mathematical drawings, including an airplane with Rolls-Royce Trent 1000 engines. Why?

Well, there are many other applications that you can use and easily export to a graphics format that can be included into your document using includegraphics from graphicx.

For example, searching the Google Sketchup 3D Warehouse for airplane gives you detailed 3D models of everything from a Boeing:

Boeing

to a paper airplane (on graphing paper!):

Paper airplane

to a vintage toy wooden airplane:

Vintage toy plane

Another 3D graphic tools, Sketch:3D Scene Description Translator not to be confused with google sketchup draws two- or three-dimensional solid objects and scenes by describing them in a tiny input language. Sketch emits PSTricks or TikZ/PGF code and allows embedding arbitrary LaTeX code for labeling and any other purpose the user can imagine. A novel feature allows LaTeX objects to be positioned with respect to 3d points in the scene. More details have a look at Italian document titled "Illustrazioni tridimensionali A con Sketch/LaTeX/PSTricks/Tikz nella didattica della Dinamica del Volo by A De Marco" at arstexnica no 4, Oct 2007. Some more related examples/hints by author

Figure 8(a) in above article 3D Illustrations using sketch of aircraft:

3D Illustrations using sketch of aircraft

Similarly, OpenClipArt provides SVG images in abundance (sometimes more cartoon-like though), including many for airplanes. These can be converted to TikZ images using Inkscape.

Printing any of these to PDF if no other means exist (again, using free software like PDF Creator print driver or otherwise) gives you a scalable vector graphics image which you can then use to overlay your annotations using techniques described in Drawing on an image with TikZ.

Answered by Werner on April 26, 2021

enter image description here

documentclass[preview,border=12pt]{standalone}
usepackage{bbding,graphicx}
begin{document}
scalebox{10}{Plane}
end{document}

Edit:

Responding to the requested animation:

enter image description here

documentclass[preview,border=12pt,multi]{standalone}
usepackage{bbding,graphicx,multido}
begin{document}
multido{i=10+-1}{10}{previewscalebox{i}{Plane}endpreview}
end{document}

How to enjoy it? Imagine that you are dropped from a plane.

Answered by kiss my armpit on April 26, 2021

It was suggested in chat

http://chat.stackexchange.com/transcript/message/9482087#9482087

That picture mode would be the ideal tool for the job here:

documentclass{article}
begin{document}
begin{picture}(200,100)
put(30,40){line(1,0){150}}
put(30,40){line(0,1){60}}
put(30,100){line(1,0){20}}
put(50,100){line(1,-4){10}}
put(60,60){line(1,0){100}}
put(160,60){line(1,-1){20}}
put(100,50){line(0,-1){80}}
put(130,50){line(0,-1){80}}
put(100,-30){line(1,0){30}}
put(100,61){line(0,1){49}}
put(130,61){line(0,1){49}}
put(100,110){line(1,0){30}}
end{picture}
end{document}

Answered by David Carlisle on April 26, 2021

You could start with something like this:

http://github.com/lahvak/TeX-stuff/blob/master/plane.tex

(I tried to include the code here, but it was too large.)

It will produce a picture like this:

Picture of a plane

You can then edit the code, clean it up, shorten it, etc.

Edit: I took the original .png image, deleted some irrelevant parts, and use potrace to get a vectorized version. That step would not be necessary if the original already was in a vector format. Then I use pstoedit to convert it to an editable format. At least the version of pstoedit on my computer does not do conversion to tikz, but metapost uses very similar syntax for path specifications, so I converted to metapost and eddited by hand.

Then I went through the file, adding color attributes to individual path to be able to locate which one is which, and, with a help of an overlayed grid, editted at least some of the paths. The editing could be carried much further, but as an example I feel this is sufficient. It is a tedious process, but IMHO it would be less work than creating the whole drawing from scratch in tikz.

As it is, it really did not take long, I had to interrupt the work several times, but altogether it took perhaps 30 minutes or so.

Answered by Jan Hlavacek on April 26, 2021

An example, from pgfplots gallery:

enter image description here

Answered by user13907 on April 26, 2021

fontawesome now offers a scalable alternative to the symbol from bbding, offering both an aeroplane symbol proper and two versions of a paper aeroplane.

awesome aeroplanes

documentclass{article}
usepackage{fontawesome}
begin{document}
  faPlane faPaperPlane faPaperPlaneO
end{document}

And the font even scales correctly when compiled with pdfTeX. If you have problems with scaling make sure your TeX distribution is current as an earlier version was buggy in a way which affecting scaling with pdfTeX (but not Xe/LuaTeX).

Answered by cfr on April 26, 2021

The next revolution in aviation:

The duck plane

documentclass{standalone}

usepackage{tikzducks}

begin{document}
begin{tikzpicture}
duck

fill[orange] (0.7331,0.5229) .. controls (1.8688,-0.6326) and (2.2337,0.0383) .. (1.2819,0.7331) -- cycle;

fill[brown] (1.3848,1.6771) .. controls (1.2665,2.2823) and (0.5559,2.2697) .. (0.4000,1.6455) .. controls (0.5711,1.6714) and (0.8503,1.6562) .. (0.9926,1.6247) .. controls (0.9703,1.4641) and (1.0307,1.0718) .. (1.1444,1.0104) .. controls (1.3485,0.9002) and (1.4461,1.4498) .. (1.3848,1.6771) -- cycle;

fill[gray] (0.9153,1.4857) -- (0.9472,1.6278) -- (1.3926,1.5288) -- (1.3840,1.4228) -- cycle;
fill[gray] (0.6484,1.6773) -- (0.6601,1.7155) -- (0.7558,1.6863) -- (0.7441,1.6480) -- cycle;

draw[gray,fill=black] (0.83,1.57) circle (0.135);
draw[gray,fill=black] (0.54,1.65) circle (0.12);

end{tikzpicture}
end{document}

enter image description here

Answered by samcarter_is_at_topanswers.xyz on April 26, 2021

I add my aircraft....

 %% Compile and read me!
documentclass[a4paper,12pt]{article}
usepackage{tikz}
usepackage{graphicx}
begin{document}

begin{figure}


tikzset{every picture/.style={line width=0.75pt}} 

begin{tikzpicture}[x=0.75pt,y=0.75pt,yscale=-1,xscale=1]

%Shape: Ellipse [id:dp08008219746861056] 
draw  [fill={rgb, 255:red, 0; green, 0; blue, 0 }  ,fill opacity=1 ] (302.25,100) .. controls (336.08,100) and (363.5,133.58) .. (363.5,175) .. controls (363.5,216.42) and (336.08,250) .. (302.25,250) .. controls (268.42,250) and (241,216.42) .. (241,175) .. controls (241,133.58) and (268.42,100) .. (302.25,100) -- cycle ;
%Rounded Rect [id:dp13750501287293182] 
draw  [draw opacity=0][fill={rgb, 255:red, 255; green, 255; blue, 255 }  ,fill opacity=1 ] (280.38,159) .. controls (280.38,156.79) and (282.17,155) .. (284.38,155) -- (320.13,155) .. controls (322.33,155) and (324.13,156.79) .. (324.13,159) -- (324.13,171) .. controls (324.13,173.21) and (322.33,175) .. (320.13,175) -- (284.38,175) .. controls (282.17,175) and (280.38,173.21) .. (280.38,171) -- cycle ;
%Rounded Rect [id:dp63704223402405] 
draw  [color={rgb, 255:red, 0; green, 0; blue, 0 }  ,draw opacity=1 ][fill={rgb, 255:red, 0; green, 0; blue, 0 }  ,fill opacity=1 ] (124,182.72) .. controls (124,180.66) and (125.66,179) .. (127.72,179) -- (479.78,179) .. controls (481.84,179) and (483.5,180.66) .. (483.5,182.72) -- (483.5,193.87) .. controls (483.5,195.92) and (481.84,197.58) .. (479.78,197.58) -- (127.72,197.58) .. controls (125.66,197.58) and (124,195.92) .. (124,193.87) -- cycle ;
%Rounded Rect [id:dp1545265501662887] 
draw  [color={rgb, 255:red, 0; green, 0; blue, 0 }  ,draw opacity=1 ][fill={rgb, 255:red, 0; green, 0; blue, 0 }  ,fill opacity=1 ] (217.41,110.24) .. controls (217.71,109.65) and (218.43,109.41) .. (219.02,109.71) -- (284.61,142.93) .. controls (285.2,143.23) and (285.44,143.95) .. (285.14,144.55) -- (283.51,147.76) .. controls (283.21,148.35) and (282.49,148.59) .. (281.9,148.29) -- (216.31,115.07) .. controls (215.72,114.77) and (215.48,114.05) .. (215.78,113.45) -- cycle ;
%Rounded Rect [id:dp38319443469569525] 
draw  [color={rgb, 255:red, 0; green, 0; blue, 0 }  ,draw opacity=1 ][fill={rgb, 255:red, 0; green, 0; blue, 0 }  ,fill opacity=1 ] (391.65,110.44) .. controls (391.65,110.44) and (391.65,110.44) .. (391.65,110.44) -- (324,144.91) .. controls (324,144.91) and (324,144.91) .. (324,144.91) -- (321.28,139.56) .. controls (321.28,139.56) and (321.28,139.56) .. (321.28,139.56) -- (388.92,105.09) .. controls (388.92,105.09) and (388.92,105.09) .. (388.92,105.09) -- cycle ;
%Flowchart: Manual Operation [id:dp3391703456981534] 
draw  [fill={rgb, 255:red, 0; green, 0; blue, 0 }  ,fill opacity=1 ] (303.39,46.02) -- (305.99,105.15) -- (294.75,105.24) -- (296.37,46.07) -- cycle ;
%Shape: Donut [id:dp7355739513956261] 
draw  [fill={rgb, 255:red, 0; green, 0; blue, 0 }  ,fill opacity=1 ,even odd rule] (144.5,214.25) .. controls (144.5,207.21) and (150.21,201.5) .. (157.25,201.5) .. controls (164.29,201.5) and (170,207.21) .. (170,214.25) .. controls (170,221.29) and (164.29,227) .. (157.25,227) .. controls (150.21,227) and (144.5,221.29) .. (144.5,214.25)(137,214.25) .. controls (137,203.07) and (146.07,194) .. (157.25,194) .. controls (168.43,194) and (177.5,203.07) .. (177.5,214.25) .. controls (177.5,225.43) and (168.43,234.5) .. (157.25,234.5) .. controls (146.07,234.5) and (137,225.43) .. (137,214.25) ;

%Shape: Donut [id:dp9357214934457365] 
draw  [fill={rgb, 255:red, 0; green, 0; blue, 0 }  ,fill opacity=1 ,even odd rule] (445.5,215.25) .. controls (445.5,208.21) and (451.21,202.5) .. (458.25,202.5) .. controls (465.29,202.5) and (471,208.21) .. (471,215.25) .. controls (471,222.29) and (465.29,228) .. (458.25,228) .. controls (451.21,228) and (445.5,222.29) .. (445.5,215.25)(438,215.25) .. controls (438,204.07) and (447.07,195) .. (458.25,195) .. controls (469.43,195) and (478.5,204.07) .. (478.5,215.25) .. controls (478.5,226.43) and (469.43,235.5) .. (458.25,235.5) .. controls (447.07,235.5) and (438,226.43) .. (438,215.25) ;
%Shape: Cloud [id:dp4333656795228138] 
draw   (99.14,220.64) .. controls (98.86,218.56) and (99.77,216.49) .. (101.49,215.32) .. controls (103.2,214.16) and (105.42,214.09) .. (107.2,215.16) .. controls (107.83,213.94) and (108.98,213.1) .. (110.31,212.9) .. controls (111.64,212.69) and (112.98,213.13) .. (113.94,214.1) .. controls (114.48,213) and (115.53,212.26) .. (116.73,212.14) .. controls (117.92,212.02) and (119.09,212.55) .. (119.82,213.53) .. controls (120.79,212.36) and (122.33,211.87) .. (123.78,212.27) .. controls (125.23,212.66) and (126.32,213.87) .. (126.59,215.38) .. controls (127.78,215.71) and (128.77,216.55) .. (129.3,217.69) .. controls (129.84,218.82) and (129.87,220.14) .. (129.38,221.3) .. controls (130.55,222.85) and (130.83,224.93) .. (130.1,226.74) .. controls (129.38,228.56) and (127.76,229.85) .. (125.86,230.12) .. controls (125.85,231.83) and (124.93,233.39) .. (123.47,234.21) .. controls (122.01,235.03) and (120.22,234.98) .. (118.8,234.08) .. controls (118.2,236.12) and (116.5,237.63) .. (114.44,237.94) .. controls (112.38,238.25) and (110.33,237.32) .. (109.17,235.55) .. controls (107.75,236.42) and (106.05,236.67) .. (104.45,236.25) .. controls (102.85,235.82) and (101.48,234.75) .. (100.66,233.28) .. controls (99.21,233.45) and (97.81,232.68) .. (97.15,231.36) .. controls (96.49,230.03) and (96.72,228.42) .. (97.71,227.34) .. controls (96.42,226.56) and (95.76,225.02) .. (96.08,223.51) .. controls (96.4,222.01) and (97.62,220.88) .. (99.11,220.72) ; draw   (97.72,227.34) .. controls (98.33,227.7) and (99.03,227.87) .. (99.74,227.81)(100.66,233.28) .. controls (100.96,233.24) and (101.26,233.16) .. (101.54,233.05)(109.17,235.55) .. controls (108.96,235.22) and (108.78,234.87) .. (108.64,234.51)(118.8,234.08) .. controls (118.91,233.71) and (118.99,233.33) .. (119.02,232.94)(125.86,230.12) .. controls (125.88,228.31) and (124.87,226.65) .. (123.27,225.85)(129.38,221.3) .. controls (129.12,221.91) and (128.73,222.46) .. (128.23,222.9)(126.59,215.38) .. controls (126.63,215.63) and (126.65,215.88) .. (126.65,216.14)(119.82,213.53) .. controls (119.58,213.82) and (119.38,214.14) .. (119.23,214.49)(113.94,214.1) .. controls (113.81,214.36) and (113.71,214.64) .. (113.65,214.93)(107.2,215.16) .. controls (107.57,215.38) and (107.92,215.65) .. (108.24,215.96)(99.14,220.64) .. controls (99.18,220.93) and (99.24,221.22) .. (99.32,221.49) ;
%Shape: Cloud [id:dp7072621367917165] 
draw   (186.05,229.24) .. controls (185.69,227.47) and (186.87,225.71) .. (189.08,224.72) .. controls (191.29,223.73) and (194.15,223.67) .. (196.45,224.58) .. controls (197.26,223.54) and (198.74,222.83) .. (200.46,222.66) .. controls (202.17,222.48) and (203.9,222.86) .. (205.14,223.68) .. controls (205.83,222.74) and (207.19,222.11) .. (208.73,222.01) .. controls (210.28,221.91) and (211.79,222.36) .. (212.73,223.19) .. controls (213.98,222.2) and (215.97,221.78) .. (217.84,222.12) .. controls (219.7,222.46) and (221.11,223.49) .. (221.46,224.77) .. controls (222.99,225.05) and (224.27,225.76) .. (224.96,226.73) .. controls (225.65,227.69) and (225.68,228.81) .. (225.06,229.8) .. controls (226.57,231.12) and (226.92,232.88) .. (225.98,234.43) .. controls (225.05,235.97) and (222.97,237.07) .. (220.52,237.3) .. controls (220.5,238.75) and (219.32,240.08) .. (217.43,240.78) .. controls (215.54,241.48) and (213.24,241.44) .. (211.41,240.67) .. controls (210.64,242.4) and (208.44,243.68) .. (205.79,243.95) .. controls (203.13,244.22) and (200.48,243.42) .. (198.99,241.92) .. controls (197.16,242.66) and (194.97,242.87) .. (192.9,242.51) .. controls (190.83,242.15) and (189.07,241.24) .. (188.01,239.98) .. controls (186.14,240.13) and (184.33,239.48) .. (183.48,238.35) .. controls (182.63,237.22) and (182.92,235.86) .. (184.21,234.93) .. controls (182.54,234.27) and (181.69,232.96) .. (182.1,231.68) .. controls (182.51,230.4) and (184.09,229.45) .. (186.01,229.31) ; draw   (184.21,234.93) .. controls (185,235.25) and (185.91,235.39) .. (186.82,235.34)(188.01,239.98) .. controls (188.4,239.95) and (188.78,239.89) .. (189.15,239.79)(198.99,241.92) .. controls (198.72,241.64) and (198.49,241.34) .. (198.3,241.03)(211.41,240.67) .. controls (211.56,240.35) and (211.65,240.03) .. (211.69,239.7)(220.52,237.3) .. controls (220.53,235.76) and (219.23,234.35) .. (217.17,233.67)(225.06,229.8) .. controls (224.72,230.32) and (224.21,230.79) .. (223.57,231.16)(221.46,224.77) .. controls (221.51,224.98) and (221.54,225.19) .. (221.54,225.41)(212.73,223.19) .. controls (212.42,223.44) and (212.16,223.71) .. (211.96,224.01)(205.14,223.68) .. controls (204.97,223.9) and (204.85,224.14) .. (204.77,224.38)(196.45,224.58) .. controls (196.93,224.77) and (197.38,225) .. (197.78,225.26)(186.05,229.24) .. controls (186.1,229.49) and (186.18,229.73) .. (186.28,229.97) ;
%Shape: Cloud [id:dp7857000393259967] 
draw   (481.61,229.18) .. controls (479.73,228.22) and (478.55,226.3) .. (478.56,224.23) .. controls (478.57,222.15) and (479.77,220.29) .. (481.66,219.43) .. controls (481.02,218.22) and (480.98,216.8) .. (481.56,215.58) .. controls (482.14,214.37) and (483.27,213.52) .. (484.61,213.28) .. controls (484.01,212.21) and (484,210.92) .. (484.58,209.87) .. controls (485.16,208.82) and (486.26,208.15) .. (487.48,208.11) .. controls (487.07,206.65) and (487.54,205.1) .. (488.68,204.13) .. controls (489.83,203.16) and (491.45,202.95) .. (492.84,203.58) .. controls (493.79,202.79) and (495.04,202.46) .. (496.28,202.66) .. controls (497.52,202.86) and (498.62,203.58) .. (499.3,204.64) .. controls (501.24,204.56) and (503.1,205.51) .. (504.19,207.14) .. controls (505.27,208.76) and (505.42,210.82) .. (504.57,212.55) .. controls (505.97,213.52) and (506.74,215.16) .. (506.58,216.84) .. controls (506.43,218.51) and (505.38,219.95) .. (503.83,220.6) .. controls (505.17,222.26) and (505.44,224.51) .. (504.53,226.38) .. controls (503.62,228.26) and (501.69,229.42) .. (499.57,229.37) .. controls (499.49,231.03) and (498.73,232.58) .. (497.47,233.65) .. controls (496.21,234.73) and (494.55,235.25) .. (492.88,235.09) .. controls (492.2,236.38) and (490.77,237.1) .. (489.3,236.89) .. controls (487.84,236.68) and (486.64,235.59) .. (486.31,234.15) .. controls (484.94,234.77) and (483.29,234.44) .. (482.23,233.33) .. controls (481.18,232.21) and (480.94,230.57) .. (481.66,229.25) ; draw   (486.31,234.15) .. controls (486.96,233.85) and (487.5,233.37) .. (487.85,232.75)(492.88,235.09) .. controls (493.02,234.82) and (493.12,234.53) .. (493.19,234.23)(499.57,229.37) .. controls (499.18,229.36) and (498.8,229.31) .. (498.41,229.22)(503.83,220.6) .. controls (503.58,220.3) and (503.31,220.02) .. (503.01,219.78)(504.57,212.55) .. controls (503.08,211.51) and (501.14,211.39) .. (499.58,212.26)(499.3,204.64) .. controls (499.66,205.2) and (499.89,205.84) .. (499.96,206.5)(492.84,203.58) .. controls (493.07,203.69) and (493.29,203.82) .. (493.5,203.96)(487.48,208.11) .. controls (487.58,208.47) and (487.73,208.82) .. (487.94,209.14)(484.61,213.28) .. controls (484.75,213.53) and (484.93,213.77) .. (485.13,213.98)(481.66,219.43) .. controls (482.06,219.25) and (482.48,219.11) .. (482.91,219.03)(481.61,229.18) .. controls (481.87,229.31) and (482.14,229.42) .. (482.41,229.51) ;
%Shape: Cloud [id:dp23209518400899798] 
draw  [fill={rgb, 255:red, 155; green, 155; blue, 155 }  ,fill opacity=1 ] (101.37,105.23) .. controls (101.46,109.56) and (105.95,112.64) .. (112.93,113.16) .. controls (119.9,113.67) and (128.14,111.53) .. (134.15,107.64) .. controls (137.14,109.35) and (141.86,109.8) .. (146.88,108.84) .. controls (151.91,107.89) and (156.65,105.65) .. (159.67,102.8) .. controls (162.25,104.38) and (166.55,104.74) .. (171.04,103.74) .. controls (175.53,102.74) and (179.58,100.52) .. (181.76,97.88) .. controls (185.97,99.15) and (191.95,98.53) .. (197.09,96.27) .. controls (202.24,94.02) and (205.64,90.55) .. (205.81,87.35) .. controls (210.03,85.49) and (213.24,82.84) .. (214.61,80.09) .. controls (215.99,77.34) and (215.38,74.75) .. (212.97,73) .. controls (216.46,68.78) and (216.36,64.47) .. (212.7,61.68) .. controls (209.04,58.89) and (202.38,58.05) .. (195.19,59.45) .. controls (194.23,56.15) and (190,54.05) .. (184.14,53.96) .. controls (178.28,53.86) and (171.7,55.78) .. (166.94,58.99) .. controls (163.61,55.64) and (156.52,54.46) .. (148.72,55.96) .. controls (140.93,57.46) and (133.84,61.37) .. (130.5,66) .. controls (124.78,65.75) and (118.35,67) .. (112.65,69.47) .. controls (106.95,71.95) and (102.46,75.42) .. (100.21,79.13) .. controls (94.75,80.27) and (89.97,83.2) .. (88.25,86.45) .. controls (86.53,89.71) and (88.23,92.59) .. (92.5,93.68) .. controls (88.13,96.52) and (86.52,100.19) .. (88.5,102.79) .. controls (90.49,105.39) and (95.62,106.32) .. (101.22,105.1) ; draw   (92.5,93.68) .. controls (94.57,92.34) and (97.08,91.3) .. (99.73,90.69)(100.21,79.13) .. controls (101.35,78.89) and (102.49,78.73) .. (103.6,78.67)(130.5,66) .. controls (129.89,66.85) and (129.42,67.71) .. (129.09,68.57)(166.94,58.99) .. controls (167.55,59.6) and (168.02,60.27) .. (168.35,60.99)(195.19,59.45) .. controls (196.22,62.96) and (193.38,67.23) .. (187.89,70.41)(212.97,73) .. controls (211.67,72.06) and (209.92,71.4) .. (207.83,71.07)(205.81,87.35) .. controls (205.84,86.82) and (205.78,86.31) .. (205.63,85.82)(181.76,97.88) .. controls (180.71,97.56) and (179.8,97.13) .. (179.05,96.61)(159.67,102.8) .. controls (159.06,102.42) and (158.55,101.97) .. (158.17,101.47)(134.15,107.64) .. controls (135.42,106.82) and (136.57,105.93) .. (137.56,105.01)(101.37,105.23) .. controls (101.36,104.63) and (101.43,104.01) .. (101.58,103.39) ;
%Shape: Cloud [id:dp8049013013834856] 
draw  [fill={rgb, 255:red, 155; green, 155; blue, 155 }  ,fill opacity=1 ] (425.78,108.48) .. controls (424.92,111.3) and (427.76,114.09) .. (433.1,115.67) .. controls (438.45,117.25) and (445.35,117.34) .. (450.9,115.9) .. controls (452.86,117.54) and (456.45,118.67) .. (460.59,118.96) .. controls (464.72,119.24) and (468.91,118.64) .. (471.9,117.33) .. controls (473.57,118.82) and (476.85,119.82) .. (480.58,119.98) .. controls (484.31,120.14) and (487.96,119.43) .. (490.23,118.1) .. controls (493.25,119.68) and (498.06,120.35) .. (502.57,119.81) .. controls (507.08,119.27) and (510.49,117.63) .. (511.32,115.6) .. controls (515.02,115.15) and (518.1,114.01) .. (519.77,112.48) .. controls (521.44,110.94) and (521.53,109.16) .. (520.02,107.59) .. controls (523.66,105.49) and (524.51,102.69) .. (522.26,100.23) .. controls (520,97.77) and (514.97,96.03) .. (509.05,95.65) .. controls (509,93.35) and (506.15,91.23) .. (501.59,90.12) .. controls (497.03,89.01) and (491.47,89.08) .. (487.06,90.3) .. controls (485.18,87.54) and (479.88,85.51) .. (473.46,85.08) .. controls (467.05,84.66) and (460.65,85.92) .. (457.05,88.32) .. controls (452.63,87.13) and (447.32,86.79) .. (442.33,87.37) .. controls (437.34,87.95) and (433.08,89.4) .. (430.52,91.39) .. controls (426,91.15) and (421.63,92.19) .. (419.58,93.99) .. controls (417.53,95.78) and (418.23,97.95) .. (421.34,99.42) .. controls (417.31,100.48) and (415.26,102.56) .. (416.25,104.6) .. controls (417.24,106.63) and (421.05,108.15) .. (425.69,108.37) ; draw   (421.34,99.42) .. controls (423.25,98.93) and (425.44,98.7) .. (427.64,98.78)(430.52,91.39) .. controls (431.46,91.44) and (432.39,91.54) .. (433.27,91.7)(457.05,88.32) .. controls (456.38,88.76) and (455.82,89.23) .. (455.39,89.73)(487.06,90.3) .. controls (487.4,90.8) and (487.62,91.32) .. (487.72,91.85)(509.04,95.65) .. controls (509.09,98.11) and (505.95,100.36) .. (500.97,101.43)(520.02,107.59) .. controls (519.21,106.76) and (517.98,106.02) .. (516.42,105.43)(511.32,115.6) .. controls (511.45,115.26) and (511.52,114.92) .. (511.51,114.57)(490.23,118.1) .. controls (489.48,117.71) and (488.86,117.27) .. (488.39,116.8)(471.9,117.33) .. controls (471.5,116.98) and (471.2,116.6) .. (471,116.21)(450.9,115.9) .. controls (452.07,115.6) and (453.15,115.23) .. (454.12,114.81)(425.78,108.48) .. controls (425.9,108.09) and (426.09,107.7) .. (426.35,107.33) ;
end{tikzpicture}
caption{Aircraft with Mathcha/TikZ.}
end{figure}
end{document}

enter image description here

Answered by Sebastiano on April 26, 2021

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP