/usr/share/tcltk/tklib0.5/plotchart/plot3d.tcl is in tklib 0.5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | # plot3d.tcl --
# Facilities to draw simple 3D plots in a dedicated canvas
#
# Note:
# This source file contains the private functions for 3D plotting.
# It is the companion of "plotchart.tcl"
#
# Draw3DAxes --
# Draw the axes in a 3D plot
# Arguments:
# w Name of the canvas
# xmin Minimum x coordinate
# xmax Maximum x coordinate
# xstep Step size
# ymin Minimum y coordinate
# ymax Maximum y coordinate
# ystep Step size
# zmin Minimum z coordinate
# zmax Maximum z coordinate
# zstep Step size
# names List of labels for the x-axis (optional)
# Result:
# None
# Note:
# To keep the axes in positive orientation, the x-axis appears
# on the right-hand side and the y-axis appears in front.
# This may not be the most "intuitive" presentation though.
# Side effects:
# Axes drawn in canvas
#
proc ::Plotchart::Draw3DAxes { w xmin ymin zmin
xmax ymax zmax
xstep ystep zstep
{names {}} } {
variable scaling
$w delete axis3d
#
# Create the support lines first
#
foreach {pxxmin pyxmin} [coords3DToPixel $w $scaling($w,xmin) $scaling($w,ymin) $scaling($w,zmin)] {break}
foreach {pxxmax pyxmax} [coords3DToPixel $w $scaling($w,xmax) $scaling($w,ymin) $scaling($w,zmin)] {break}
foreach {pxymax pyymax} [coords3DToPixel $w $scaling($w,xmax) $scaling($w,ymax) $scaling($w,zmin)] {break}
foreach {pxzmax pyzmax} [coords3DToPixel $w $scaling($w,xmax) $scaling($w,ymin) $scaling($w,zmax)] {break}
foreach {pxzmx2 pyzmx2} [coords3DToPixel $w $scaling($w,xmin) $scaling($w,ymin) $scaling($w,zmax)] {break}
foreach {pxymx2 pyymx2} [coords3DToPixel $w $scaling($w,xmin) $scaling($w,ymax) $scaling($w,zmin)] {break}
foreach {pxzymx pyzymx} [coords3DToPixel $w $scaling($w,xmax) $scaling($w,ymax) $scaling($w,zmax)] {break}
$w create line $pxxmax $pyxmax $pxxmin $pyxmin \
-fill black -tag axis3d
$w create line $pxxmax $pyxmax $pxymax $pyymax \
-fill black -tag axis3d
$w create line $pxxmin $pyxmin $pxymx2 $pyymx2 \
-fill black -tag axis3d
$w create line $pxymax $pyymax $pxymx2 $pyymx2 \
-fill black -tag axis3d
$w create line $pxzmax $pyzmax $pxzymx $pyzymx \
-fill black -tag axis3d
$w create line $pxxmax $pyxmax $pxzmax $pyzmax \
-fill black -tag axis3d
$w create line $pxxmin $pyxmin $pxzmx2 $pyzmx2 \
-fill black -tag axis3d
$w create line $pxzmax $pyzmax $pxzmx2 $pyzmx2 \
-fill black -tag axis3d
$w create line $pxymax $pyymax $pxzymx $pyzymx \
-fill black -tag axis3d
#
# Numbers to the z-axis
#
set z $zmin
while { $z < $zmax+0.5*$zstep } {
foreach {xcrd ycrd} [coords3DToPixel $w $xmin $ymin $z] {break}
set xcrd2 [expr {$xcrd-3}]
set xcrd3 [expr {$xcrd-5}]
$w create line $xcrd2 $ycrd $xcrd $ycrd -tag axis3d
$w create text $xcrd3 $ycrd -text $z -tag axis3d -anchor e
set z [expr {$z+$zstep}]
}
#
# Numbers or labels to the x-axis (shown on the right!)
#
if { $names eq "" } {
set x $xmin
while { $x < $xmax+0.5*$xstep } {
foreach {xcrd ycrd} [coords3DToPixel $w $x $ymax $zmin] {break}
set xcrd2 [expr {$xcrd+4}]
set xcrd3 [expr {$xcrd+6}]
$w create line $xcrd2 $ycrd $xcrd $ycrd -tag axis3d
$w create text $xcrd3 $ycrd -text $x -tag axis3d -anchor w
set x [expr {$x+$xstep}]
}
} else {
set x [expr {$xmin+0.5*$xstep}]
foreach label $names {
foreach {xcrd ycrd} [coords3DToPixel $w $x $ymax $zmin] {break}
set xcrd2 [expr {$xcrd+6}]
$w create text $xcrd2 $ycrd -text $label -tag axis3d -anchor w
set x [expr {$x+$xstep}]
}
}
#
# Numbers to the y-axis (shown in front!)
#
set y $ymin
while { $y < $ymax+0.5*$ystep } {
foreach {xcrd ycrd} [coords3DToPixel $w $xmin $y $zmin] {break}
set ycrd2 [expr {$ycrd+3}]
set ycrd3 [expr {$ycrd+5}]
$w create line $xcrd $ycrd2 $xcrd $ycrd -tag axis3d
$w create text $xcrd $ycrd3 -text $y -tag axis3d -anchor n
set y [expr {$y+$ystep}]
}
set scaling($w,xstep) $xstep
set scaling($w,ystep) $ystep
set scaling($w,zstep) $zstep
#
# Set the default grid size
#
GridSize3D $w 10 10
}
# GridSize3D --
# Set the grid size for a 3D function plot
# Arguments:
# w Name of the canvas
# nxcells Number of cells in x-direction
# nycells Number of cells in y-direction
# Result:
# None
# Side effect:
# Store the grid sizes in the private array
#
proc ::Plotchart::GridSize3D { w nxcells nycells } {
variable scaling
set scaling($w,nxcells) $nxcells
set scaling($w,nycells) $nycells
}
# Draw3DFunction --
# Plot a function of x and y
# Arguments:
# w Name of the canvas
# function Name of a procedure implementing the function
# Result:
# None
# Side effect:
# The plot of the function - given the grid
#
proc ::Plotchart::Draw3DFunction { w function } {
variable scaling
set nxcells $scaling($w,nxcells)
set nycells $scaling($w,nycells)
set xmin $scaling($w,xmin)
set xmax $scaling($w,xmax)
set ymin $scaling($w,ymin)
set ymax $scaling($w,ymax)
set dx [expr {($xmax-$xmin)/double($nxcells)}]
set dy [expr {($ymax-$ymin)/double($nycells)}]
foreach {fill border} $scaling($w,colours) {break}
#
# Draw the quadrangles making up the plot in the right order:
# first y from minimum to maximum
# then x from maximum to minimum
#
for { set j 0 } { $j < $nycells } { incr j } {
set y1 [expr {$ymin + $dy*$j}]
set y2 [expr {$y1 + $dy}]
for { set i $nxcells } { $i > 0 } { incr i -1 } {
set x2 [expr {$xmin + $dx*$i}]
set x1 [expr {$x2 - $dx}]
set z11 [$function $x1 $y1]
set z12 [$function $x1 $y2]
set z21 [$function $x2 $y1]
set z22 [$function $x2 $y2]
foreach {px11 py11} [coords3DToPixel $w $x1 $y1 $z11] {break}
foreach {px12 py12} [coords3DToPixel $w $x1 $y2 $z12] {break}
foreach {px21 py21} [coords3DToPixel $w $x2 $y1 $z21] {break}
foreach {px22 py22} [coords3DToPixel $w $x2 $y2 $z22] {break}
$w create polygon $px11 $py11 $px21 $py21 $px22 $py22 \
$px12 $py12 $px11 $py11 \
-fill $fill -outline $border
}
}
}
# Draw3DData --
# Plot a matrix of data as a function of x and y
# Arguments:
# w Name of the canvas
# data Nested list of data in the form of a matrix
# Result:
# None
# Side effect:
# The plot of the data
#
proc ::Plotchart::Draw3DData { w data } {
variable scaling
set nxcells [llength [lindex $data 0]]
set nycells [llength $data]
incr nxcells -1
incr nycells -1
set xmin $scaling($w,xmin)
set xmax $scaling($w,xmax)
set ymin $scaling($w,ymin)
set ymax $scaling($w,ymax)
set dx [expr {($xmax-$xmin)/double($nxcells)}]
set dy [expr {($ymax-$ymin)/double($nycells)}]
foreach {fill border} $scaling($w,colours) {break}
#
# Draw the quadrangles making up the data in the right order:
# first y from minimum to maximum
# then x from maximum to minimum
#
for { set j 0 } { $j < $nycells } { incr j } {
set z1data [lindex $data $j]
set z2data [lindex $data [expr {$j+1}]]
set y1 [expr {$ymin + $dy*$j}]
set y2 [expr {$y1 + $dy}]
for { set i $nxcells } { $i > 0 } { incr i -1 } {
set x2 [expr {$xmin + $dx*$i}]
set x1 [expr {$x2 - $dx}]
set z11 [lindex $z1data [expr {$i-1}]]
set z21 [lindex $z1data $i ]
set z12 [lindex $z2data [expr {$i-1}]]
set z22 [lindex $z2data $i ]
foreach {px11 py11} [coords3DToPixel $w $x1 $y1 $z11] {break}
foreach {px12 py12} [coords3DToPixel $w $x1 $y2 $z12] {break}
foreach {px21 py21} [coords3DToPixel $w $x2 $y1 $z21] {break}
foreach {px22 py22} [coords3DToPixel $w $x2 $y2 $z22] {break}
$w create polygon $px11 $py11 $px21 $py21 $px22 $py22 \
$px12 $py12 $px11 $py11 \
-fill $fill -outline $border
}
}
}
# Draw3DLineFrom3Dcoordinates --
# Plot a line in the three-dimensional axis system
# Arguments:
# w Name of the canvas
# data List of xyz-coordinates
# colour The colour to use
# Result:
# None
# Side effect:
# The projected line
#
proc ::Plotchart::Draw3DLineFrom3Dcoordinates { w data colour } {
variable scaling
set xmin $scaling($w,xmin)
set xmax $scaling($w,xmax)
set xprev {}
set coords {}
set colours {}
foreach {x y z} $data {
foreach {px py} [coords3DToPixel $w $x $y $z] {break}
lappend coords $px $py
if { $xprev == {} } {
set xprev $x
}
set factor [expr {0.5*(2.0*$xmax-$xprev-$x)/($xmax-$xmin)}]
lappend colours [GreyColour $colour $factor]
set xprev $x
}
foreach {xb yb} [lrange $coords 0 end-2] {xe ye} [lrange $coords 2 end] c [lrange $colours 0 end-1] {
$w create line $xb $yb $xe $ye -fill $c
}
}
|