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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
|
# -*- encoding: utf-8 -*-
#
#
# Copyright (C) 2002-2012, 2022 Jörg Lehmann <joerg@pyx-project.org>
# Copyright (C) 2003-2004 Michael Schindler <m-schindler@users.sourceforge.net>
# Copyright (C) 2002-2012, 2022 André Wobst <wobsta@pyx-project.org>
#
# This file is part of PyX (https://pyx-project.org/).
#
# PyX 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.
#
# PyX is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with PyX; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
import math
from pyx import canvas, color, attr, text, style, unit, box, path, utils
from pyx import trafo as trafomodule
from pyx.graph.axis import tick
goldenmean = 0.5 * (math.sqrt(5) + 1)
class axiscanvas(canvas.canvas):
"""axis canvas"""
def __init__(self, painter, graphtextengine):
"""initializes the instance
- sets extent to zero
- sets labels to an empty list"""
canvas.canvas.__init__(self)
self.extent_pt = 0
self.labels = []
if isinstance(painter, _text) and painter.textengine:
self.settextengine(painter.textengine)
else:
self.settextengine(graphtextengine)
class rotatetext:
"""create rotations accordingly to tick directions"""
def __init__(self, direction, epsilon=1e-10):
self.direction = direction
self.epsilon = epsilon
def trafo(self, dx, dy):
direction = self.direction + math.atan2(dy, dx) * 180 / math.pi
while (direction > 180 + self.epsilon):
direction -= 360
while (direction < -180 - self.epsilon):
direction += 360
while (direction > 90 + self.epsilon):
direction -= 180
while (direction < -90 - self.epsilon):
direction += 180
return trafomodule.rotate(direction)
rotatetext.parallel = rotatetext(90)
rotatetext.orthogonal = rotatetext(180)
class _text:
"""a painter with a textengine"""
def __init__(self, textengine=None):
self.textengine = textengine
class _title(_text):
"""class for painting an axis title"""
defaulttitleattrs = [text.halign.center, text.vshift.mathaxis]
def __init__(self, titledist=0.3*unit.v_cm,
titleattrs=[],
titledirection=rotatetext.parallel,
titlepos=0.5,
**kwargs):
self.titledist = titledist
self.titleattrs = titleattrs
self.titledirection = titledirection
self.titlepos = titlepos
_text.__init__(self, **kwargs)
def paint(self, canvas, data, axis, axispos):
if axis.title is not None and self.titleattrs is not None:
x, y = axispos.vtickpoint_pt(self.titlepos)
dx, dy = axispos.vtickdirection(self.titlepos)
titleattrs = self.defaulttitleattrs + self.titleattrs
if self.titledirection is not None:
x2, y2 = axispos.vtickpoint_pt(self.titlepos+0.001) # XXX: axisdirection needed
dx2, dy2 = x2-x, y2-y
if dx*dy2-dy*dx2 < 0:
dy2 *= -1
dx2 *= -1
titleattrs.append(self.titledirection.trafo(dy2, -dx2))
title = canvas.layer("title").text_pt(x, y, axis.title, titleattrs)
canvas.extent_pt += unit.topt(self.titledist)
title.linealign_pt(canvas.extent_pt, -dx, -dy)
canvas.extent_pt += title.extent_pt(dx, dy)
class geometricseries(attr.changeattr):
def __init__(self, initial, factor):
self.initial = initial
self.factor = factor
def select(self, index, total):
return self.initial * (self.factor ** index)
class ticklength(geometricseries): pass
_base = 0.12 * unit.v_cm
ticklength.SHORT = ticklength(_base/math.sqrt(64), 1/goldenmean)
ticklength.SHORt = ticklength(_base/math.sqrt(32), 1/goldenmean)
ticklength.SHOrt = ticklength(_base/math.sqrt(16), 1/goldenmean)
ticklength.SHort = ticklength(_base/math.sqrt(8), 1/goldenmean)
ticklength.Short = ticklength(_base/math.sqrt(4), 1/goldenmean)
ticklength.short = ticklength(_base/math.sqrt(2), 1/goldenmean)
ticklength.normal = ticklength(_base, 1/goldenmean)
ticklength.long = ticklength(_base*math.sqrt(2), 1/goldenmean)
ticklength.Long = ticklength(_base*math.sqrt(4), 1/goldenmean)
ticklength.LOng = ticklength(_base*math.sqrt(8), 1/goldenmean)
ticklength.LONg = ticklength(_base*math.sqrt(16), 1/goldenmean)
ticklength.LONG = ticklength(_base*math.sqrt(32), 1/goldenmean)
class regular(_title):
"""class for painting the ticks and labels of an axis"""
defaulttickattrs = []
defaultgridattrs = []
defaultbasepathattrs = [style.linecap.square]
defaultlabelattrs = [text.halign.center, text.vshift.mathaxis]
def __init__(self, innerticklength=ticklength.normal,
outerticklength=None,
tickattrs=[],
gridattrs=None,
basepathattrs=[],
labeldist=0.3*unit.v_cm,
labelattrs=[],
labeldirection=None,
labelhequalize=0,
labelvequalize=1,
**kwargs):
self.innerticklength = innerticklength
self.outerticklength = outerticklength
self.tickattrs = tickattrs
self.gridattrs = gridattrs
self.basepathattrs = basepathattrs
self.labeldist = labeldist
self.labelattrs = labelattrs
self.labeldirection = labeldirection
self.labelhequalize = labelhequalize
self.labelvequalize = labelvequalize
self.kwargs = kwargs
_title.__init__(self, **kwargs)
def __call__(self, **kwargs):
return regular(**utils.merge_members_kwargs(self, [self.kwargs, kwargs],
["innerticklength", "outerticklength", "tickattrs", "gridattrs",
"basepathattrs", "labeldist", "labelattrs", "labeldirection",
"labelhequalize", "labelvequalize"]))
def paint(self, canvas, data, axis, axispos):
for t in data.ticks:
t.temp_v = axis.convert(data, t)
t.temp_x_pt, t.temp_y_pt = axispos.vtickpoint_pt(t.temp_v)
t.temp_dx, t.temp_dy = axispos.vtickdirection(t.temp_v)
maxticklevel, maxlabellevel = tick.maxlevels(data.ticks)
labeldist_pt = unit.topt(self.labeldist)
# create & align t.temp_labelbox
for t in data.ticks:
if t.labellevel is not None:
labelattrs = attr.selectattrs(self.labelattrs, t.labellevel, maxlabellevel)
if labelattrs is not None:
labelattrs = self.defaultlabelattrs + labelattrs
if self.labeldirection is not None:
labelattrs.append(self.labeldirection.trafo(t.temp_dx, t.temp_dy))
if t.labelattrs is not None:
labelattrs.extend(t.labelattrs)
t.temp_labelbox = canvas.textengine.text_pt(t.temp_x_pt, t.temp_y_pt, t.label, labelattrs)
if len(data.ticks) > 1:
equaldirection = 1
for t in data.ticks[1:]:
if t.temp_dx != data.ticks[0].temp_dx or t.temp_dy != data.ticks[0].temp_dy:
equaldirection = 0
else:
equaldirection = 0
if equaldirection and ((not data.ticks[0].temp_dx and self.labelvequalize) or
(not data.ticks[0].temp_dy and self.labelhequalize)):
if self.labelattrs is not None:
box.linealignequal_pt([t.temp_labelbox for t in data.ticks if t.labellevel is not None],
labeldist_pt, -data.ticks[0].temp_dx, -data.ticks[0].temp_dy)
else:
for t in data.ticks:
if t.labellevel is not None and self.labelattrs is not None:
t.temp_labelbox.linealign_pt(labeldist_pt, -t.temp_dx, -t.temp_dy)
for t in data.ticks:
if t.ticklevel is not None and self.tickattrs is not None:
tickattrs = attr.selectattrs(self.defaulttickattrs + self.tickattrs, t.ticklevel, maxticklevel)
if tickattrs is not None:
innerticklength = attr.selectattr(self.innerticklength, t.ticklevel, maxticklevel)
outerticklength = attr.selectattr(self.outerticklength, t.ticklevel, maxticklevel)
if innerticklength is not None or outerticklength is not None:
if innerticklength is None:
innerticklength = 0
if outerticklength is None:
outerticklength = 0
innerticklength_pt = unit.topt(innerticklength)
outerticklength_pt = unit.topt(outerticklength)
x1 = t.temp_x_pt + t.temp_dx * innerticklength_pt
y1 = t.temp_y_pt + t.temp_dy * innerticklength_pt
x2 = t.temp_x_pt - t.temp_dx * outerticklength_pt
y2 = t.temp_y_pt - t.temp_dy * outerticklength_pt
canvas.layer("ticks").stroke(path.line_pt(x1, y1, x2, y2), tickattrs)
if outerticklength_pt > canvas.extent_pt:
canvas.extent_pt = outerticklength_pt
if -innerticklength_pt > canvas.extent_pt:
canvas.extent_pt = -innerticklength_pt
if self.gridattrs is not None:
gridattrs = attr.selectattrs(self.defaultgridattrs + self.gridattrs, t.ticklevel, maxticklevel)
if gridattrs is not None:
canvas.layer("grid").stroke(axispos.vgridpath(t.temp_v), gridattrs)
if t.labellevel is not None and self.labelattrs is not None:
canvas.layer("labels").insert(t.temp_labelbox)
canvas.labels.append(t.temp_labelbox)
extent_pt = t.temp_labelbox.extent_pt(t.temp_dx, t.temp_dy) + labeldist_pt
if extent_pt > canvas.extent_pt:
canvas.extent_pt = extent_pt
if self.labelattrs is None:
canvas.labels = None
if self.basepathattrs is not None:
canvas.layer("baseline").stroke(axispos.vbasepath(), self.defaultbasepathattrs + self.basepathattrs)
# for t in data.ticks:
# del t.temp_v # we've inserted those temporary variables ... and do not care any longer about them
# del t.temp_x_pt
# del t.temp_y_pt
# del t.temp_dx
# del t.temp_dy
# if t.labellevel is not None and self.labelattrs is not None:
# del t.temp_labelbox
_title.paint(self, canvas, data, axis, axispos)
class linked(regular):
"""class for painting a linked axis"""
def __init__(self, labelattrs=None, # turn off labels and title
titleattrs=None,
**kwargs):
regular.__init__(self, labelattrs=labelattrs,
titleattrs=titleattrs,
**kwargs)
class bar(_title):
"""class for painting a baraxis"""
defaulttickattrs = []
defaultbasepathattrs = [style.linecap.square]
defaultnameattrs = [text.halign.center, text.vshift.mathaxis]
def __init__(self, innerticklength=None,
outerticklength=None,
tickattrs=[],
basepathattrs=[],
namedist=0.3*unit.v_cm,
nameattrs=[],
namedirection=None,
namepos=0.5,
namehequalize=0,
namevequalize=1,
**kwargs):
self.innerticklength = innerticklength
self.outerticklength = outerticklength
self.tickattrs = tickattrs
self.basepathattrs = basepathattrs
self.namedist = namedist
self.nameattrs = nameattrs
self.namedirection = namedirection
self.namepos = namepos
self.namehequalize = namehequalize
self.namevequalize = namevequalize
self.kwargs = kwargs
_title.__init__(self, **kwargs)
def __call__(self, **kwargs):
return bar(**utils.merge_members_kwargs(self, [self.kwargs, kwargs],
["innerticklength", "outerticklength", "tickattrs",
"basepathattrs", "namedist", "nameattrs", "namedirection", "namepos",
"namehequalize", "namevequalize"]))
def paint(self, canvas, data, axis, positioner):
namepos = []
for name in data.names:
subaxis = data.subaxes[name]
v = subaxis.vmin + self.namepos * (subaxis.vmax - subaxis.vmin)
x, y = positioner.vtickpoint_pt(v)
dx, dy = positioner.vtickdirection(v)
namepos.append((v, x, y, dx, dy))
nameboxes = []
if self.nameattrs is not None:
for (v, x, y, dx, dy), name in zip(namepos, data.names):
nameattrs = self.defaultnameattrs + self.nameattrs
if self.namedirection is not None:
nameattrs.append(self.namedirection.trafo(dx, dy))
nameboxes.append(canvas.textengine.text_pt(x, y, str(name), nameattrs))
labeldist_pt = canvas.extent_pt + unit.topt(self.namedist)
if len(namepos) > 1:
equaldirection = 1
for np in namepos[1:]:
if np[3] != namepos[0][3] or np[4] != namepos[0][4]:
equaldirection = 0
else:
equaldirection = 0
if equaldirection and ((not namepos[0][3] and self.namevequalize) or
(not namepos[0][4] and self.namehequalize)):
box.linealignequal_pt(nameboxes, labeldist_pt, -namepos[0][3], -namepos[0][4])
else:
for namebox, np in zip(nameboxes, namepos):
namebox.linealign_pt(labeldist_pt, -np[3], -np[4])
if self.basepathattrs is not None:
p = positioner.vbasepath()
if p is not None:
canvas.layer("baseline").stroke(p, self.defaultbasepathattrs + self.basepathattrs)
if ( self.tickattrs is not None and
(self.innerticklength is not None or self.outerticklength is not None) ):
if self.innerticklength is not None:
innerticklength_pt = unit.topt(self.innerticklength)
if canvas.extent_pt < -innerticklength_pt:
canvas.extent_pt = -innerticklength_pt
elif self.outerticklength is not None:
innerticklength_pt = 0
if self.outerticklength is not None:
outerticklength_pt = unit.topt(self.outerticklength)
if canvas.extent_pt < outerticklength_pt:
canvas.extent_pt = outerticklength_pt
elif innerticklength_pt is not None:
outerticklength_pt = 0
for v in [data.subaxes[name].vminover for name in data.names] + [1]:
x, y = positioner.vtickpoint_pt(v)
dx, dy = positioner.vtickdirection(v)
x1 = x + dx * innerticklength_pt
y1 = y + dy * innerticklength_pt
x2 = x - dx * outerticklength_pt
y2 = y - dy * outerticklength_pt
canvas.layer("ticks").stroke(path.line_pt(x1, y1, x2, y2), self.defaulttickattrs + self.tickattrs)
for (v, x, y, dx, dy), namebox in zip(namepos, nameboxes):
newextent_pt = namebox.extent_pt(dx, dy) + labeldist_pt
if canvas.extent_pt < newextent_pt:
canvas.extent_pt = newextent_pt
for namebox in nameboxes:
canvas.layer("labels").insert(namebox)
_title.paint(self, canvas, data, axis, positioner)
class linkedbar(bar):
"""class for painting a linked baraxis"""
def __init__(self, nameattrs=None, titleattrs=None, **kwargs):
bar.__init__(self, nameattrs=nameattrs, titleattrs=titleattrs, **kwargs)
def getsubaxis(self, subaxis, name):
from pyx.graph.axis import linkedaxis
return linkedaxis(subaxis, name)
class split(_title):
"""class for painting a splitaxis"""
defaultbreaklinesattrs = []
def __init__(self, breaklinesdist=0.05*unit.v_cm,
breaklineslength=0.5*unit.v_cm,
breaklinesangle=-60,
breaklinesattrs=[],
**kwargs):
self.breaklinesdist = breaklinesdist
self.breaklineslength = breaklineslength
self.breaklinesangle = breaklinesangle
self.breaklinesattrs = breaklinesattrs
self.sin = math.sin(self.breaklinesangle*math.pi/180.0)
self.cos = math.cos(self.breaklinesangle*math.pi/180.0)
self.kwargs = kwargs
_title.__init__(self, **kwargs)
def __call__(self, **kwargs):
return split(**utils.merge_members_kwargs(self, [self.kwargs, kwargs],
["breaklinesdist", "breaklineslength", "breaklinesangle", "breaklinesattrs"]))
def paint(self, canvas, data, axis, axispos):
if self.breaklinesattrs is not None:
breaklinesdist_pt = unit.topt(self.breaklinesdist)
breaklineslength_pt = unit.topt(self.breaklineslength)
breaklinesextent_pt = (0.5*breaklinesdist_pt*math.fabs(self.cos) +
0.5*breaklineslength_pt*math.fabs(self.sin))
if canvas.extent_pt < breaklinesextent_pt:
canvas.extent_pt = breaklinesextent_pt
for v in [data.subaxes[name].vminover for name in data.names[1:]]:
# use a tangent of the basepath (this is independent of the tickdirection)
p = axispos.vbasepath(v, None).normpath()
breakline = p.tangent(0, length=self.breaklineslength)
widthline = p.tangent(0, length=self.breaklinesdist).transformed(trafomodule.rotate(self.breaklinesangle+90, *breakline.atbegin()))
# XXX Uiiii
tocenter = [0.5*(x[0]-x[1]) for x in zip(breakline.atbegin(), breakline.atend())]
towidth = [0.5*(x[0]-x[1]) for x in zip(widthline.atbegin(), widthline.atend())]
breakline = breakline.transformed(trafomodule.translate(*tocenter).rotated(self.breaklinesangle, *breakline.atbegin()))
breakline1 = breakline.transformed(trafomodule.translate(*towidth))
breakline2 = breakline.transformed(trafomodule.translate(-towidth[0], -towidth[1]))
canvas.layer("baseline").fill(path.path(path.moveto_pt(*breakline1.atbegin_pt()),
path.lineto_pt(*breakline1.atend_pt()),
path.lineto_pt(*breakline2.atend_pt()),
path.lineto_pt(*breakline2.atbegin_pt()),
path.closepath()), [color.gray.white])
canvas.layer("baseline").stroke(breakline1, self.defaultbreaklinesattrs + self.breaklinesattrs)
canvas.layer("baseline").stroke(breakline2, self.defaultbreaklinesattrs + self.breaklinesattrs)
_title.paint(self, canvas, data, axis, axispos)
class linkedsplit(split):
def __init__(self, titleattrs=None, **kwargs):
split.__init__(self, titleattrs=titleattrs, **kwargs)
|