1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
# ex_euclid_I_47.ppl
#
# The code in this file is part of Pyxplot
# <http://www.pyxplot.org.uk>
#
# Copyright (C) 2006-2012 Dominic Ford <coders@pyxplot.org.uk>
# 2008-2012 Ross Church
#
# $Id: ex_euclid_I_47.ppl 1261 2012-07-11 21:38:05Z dcf21 $
#
# Pyxplot is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# You should have received a copy of the GNU General Public License along with
# Pyxplot; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA
# ----------------------------------------------------------------------------
# This script produces a figure for the Pyxplot Users' Guide
# Call common initialisation script
reset
title = "ex_euclid_I_47"
load "examples/fig_init.ppl"
# BEGIN
set unit angle nodimensionless
set multiplot ; set nodisplay
# Lengths of three sides of triangle
AB = 2*unit(cm)
AC = 4*unit(cm)
BC = hypot(AC, AB) # Hypotenuse
CBA = atan2(AC, AB) # Angle CBA
# Positions of three corners of triangle
Bx = 0*unit(cm) ; By = 0*unit(cm) # The origin
Cx = Bx + BC ; Cy = By
Ax = Bx + AB*cos(CBA) ; Ay = By + AB*sin(CBA)
# Positions of constructed points
Dx = Bx ; Dy = -BC
Lx = Ax ; Ly = Dy
Ex = Cx ; Ey = Dy
Hx = Bx + (AB + AC) * cos(CBA)
Hy = By + (AB + AC) * sin(CBA)
Kx = Cx + ( AC) * cos(CBA)
Ky = Cy + ( AC) * sin(CBA)
Fx = Bx + AB*cos(CBA+90*unit(deg))
Fy = By + AB*sin(CBA+90*unit(deg))
Gx = Ax + AB*cos(CBA+90*unit(deg))
Gy = Ay + AB*sin(CBA+90*unit(deg))
# Construct diagram
box from Dx,Dy to Cx,Cy with fillcol gray50
box at Ax,Ay width AC height AC rot CBA-90*unit(deg) with fillcol gray50
box at Bx,By width AB height AB rot CBA with fillcol gray50
line from Bx,By to Kx,Ky
line from Fx,Fy to Cx,Cy
line from Ax,Ay to Dx,Dy
line from Ax,Ay to Lx,Ly
line from Ax,Ay to Ex,Ey
# Label diagram
set fontsize 1.3
TG = 0.5*unit(mm) # Gap left between labels and figure
text "A" at Ax,Ay gap TG*5 hal c val b
text "B" at Bx,By gap TG hal r val t
text "C" at Cx,Cy gap TG hal l val t
text "D" at Dx,Dy gap TG hal c val t
text "E" at Ex,Ey gap TG hal c val t
text "F" at Fx,Fy gap TG hal r val c
text "G" at Gx,Gy gap TG hal c val b
text "H" at Hx,Hy gap TG hal c val b
text "K" at Kx,Ky gap TG hal l val c
text "L" at Lx,Ly gap TG hal c val t
# Display diagram
set display ; refresh
# END
# Call common cleanup script
load "examples/fig_end.ppl"
|