File: discontinuity.gle

package info (click to toggle)
gle-graphics-manual 4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,864 kB
  • sloc: perl: 67; makefile: 14
file content (133 lines) | stat: -rw-r--r-- 4,248 bytes parent folder | download | duplicates (3)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!                                                                      !
! GLE - Graphics Layout Engine <http://glx.sourceforge.io/>          !
!                                                                      !
! Modified BSD License                                                 !
!                                                                      !
! Copyright (C) 2009 GLE.                                              !
!                                                                      !
! Redistribution and use in source and binary forms, with or without   !
! modification, are permitted provided that the following conditions   !
! are met:                                                             !
!                                                                      !
!    1. Redistributions of source code must retain the above copyright !
! notice, this list of conditions and the following disclaimer.        !
!                                                                      !
!    2. Redistributions in binary form must reproduce the above        !
! copyright notice, this list of conditions and the following          !
! disclaimer in the documentation and/or other materials provided with !
! the distribution.                                                    !
!                                                                      !
!    3. The name of the author may not be used to endorse or promote   !
! products derived from this software without specific prior written   !
! permission.                                                          !
!                                                                      !
! THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR   !
! IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED       !
! WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE   !
! ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY       !
! DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL   !
! DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE    !
! GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS        !
! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER !
! IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR      !
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN  !
! IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                        !
!                                                                      !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

size 14 5.4

include "../../script/manual.gle"

manual_graph_mode
set alabelscale 0.6

wd = 14/3
dy = -0.1

xmin = -4
xmax = 4

sub floor x
   if x>=0 then
       return int(x)
   else if x=int(x) then
       return int(x)
   else
       return int(x)-1
   end if
end sub

amove 0 dy
begin graph
   math
   size wd wd
   scale 0.8 0.8
   xaxis min xmin max xmax
   labels dist 0.15
   xaxis format "fix 0"
   yaxis format "fix 0"
   x2axis off
   y2axis off
   discontinuity threshold 5
   let d1 = floor(x) step 0.1
   d1 line color red
end graph

begin key
   pos tc hei 0.25
   offset 0 -0.2
   text "discontinuity threshold 5"
   text "let d1 = floor(x)"
   text "d1 line color red"
end key

amove wd dy
begin graph
   math
   size wd wd
   scale 0.8 0.8
   xaxis min xmin max xmax
   xaxis format "fix 0"
   yaxis format "fix 0"
   labels dist 0.15
   x2axis off
   y2axis off
   discontinuity threshold 5
   let d1 = floor(x) step 0.1
   d1 line color red nomiss
end graph

begin key
   pos tc hei 0.25
   offset 0 -0.2
   text "discontinuity threshold 5"
   text "let d1 = floor(x)"
   text "d1 line color red nomiss"
end key

amove 2*wd dy
begin graph
   math
   size wd wd
   scale 0.8 0.8
   xaxis min -2.5 max 3.5
   yaxis min -20
   xaxis format "fix 0"
   yaxis format "fix 0"
   yaxis min 0 max 25
   labels dist 0.15
   x2axis off
   y2axis off
   let d1 = -log(sin(pi*x)) step 0.01
   d1 line color red
end graph

begin key
   pos tc hei 0.25
   offset 0 -0.2
   text "let d1 = -log(sin(pi*x))"
   text "d1 line color red"
end key