CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes | Static Public Attributes
svgfig.Axes Class Reference

Public Member Functions

def __init__
 
def __repr__
 
def SVG
 

Public Attributes

 arrows
 
 attr
 
 aty
 
 text_attr
 
 xlogbase
 
 xmax
 
 ylogbase
 
 ymax
 

Static Public Attributes

dictionary defaults = {"stroke-width":"0.25pt"}
 
dictionary text_defaults = {"stroke":"none", "fill":"black", "font-size":5}
 

Detailed Description

Draw a pair of intersecting x-y axes.

Axes(xmin, xmax, ymin, ymax, atx, aty, xticks, xminiticks, xlabels, xlogbase,
yticks, yminiticks, ylabels, ylogbase, arrows, text_attr, attribute=value)

xmin, xmax               required       the x range
ymin, ymax               required       the y range
atx, aty                 default=0, 0   point where the axes try to cross;
                                        if outside the range, the axes will
                                        cross at the closest corner
xticks                   default=-10    request ticks according to the standard
                                        tick specification (see help(Ticks))
xminiticks               default=True   request miniticks according to the
                                        standard minitick specification
xlabels                  True           request tick labels according to the
                                        standard tick label specification
xlogbase                 default=None   if a number, the x axis is logarithmic
                                        with ticks at the given base (usually 10)
yticks                   default=-10    request ticks according to the standard
                                        tick specification
yminiticks               default=True   request miniticks according to the
                                        standard minitick specification
ylabels                  True           request tick labels according to the
                                        standard tick label specification
ylogbase                 default=None   if a number, the y axis is logarithmic
                                        with ticks at the given base (usually 10)
arrows                   default=None   if a new string identifier, draw arrows
                                        referenced by that identifier
text_attr                default={}     SVG attributes for the text labels
attribute=value pairs    keyword list   SVG attributes for all lines

Definition at line 3042 of file svgfig.py.

Constructor & Destructor Documentation

def svgfig.Axes.__init__ (   self,
  xmin,
  xmax,
  ymin,
  ymax,
  atx = 0,
  aty = 0,
  xticks = -10,
  xminiticks = True,
  xlabels = True,
  xlogbase = None,
  yticks = -10,
  yminiticks = True,
  ylabels = True,
  ylogbase = None,
  arrows = None,
  text_attr = {},
  attr 
)

Definition at line 3080 of file svgfig.py.

3081  def __init__(self, xmin, xmax, ymin, ymax, atx=0, aty=0, xticks=-10, xminiticks=True, xlabels=True, xlogbase=None, yticks=-10, yminiticks=True, ylabels=True, ylogbase=None, arrows=None, text_attr={}, **attr):
3082  self.xmin, self.xmax = xmin, xmax
3083  self.ymin, self.ymax = ymin, ymax
3084  self.atx, self.aty = atx, aty
3085  self.xticks, self.xminiticks, self.xlabels, self.xlogbase = xticks, xminiticks, xlabels, xlogbase
3086  self.yticks, self.yminiticks, self.ylabels, self.ylogbase = yticks, yminiticks, ylabels, ylogbase
3087  self.arrows = arrows
3089  self.text_attr = dict(self.text_defaults)
3090  self.text_attr.update(text_attr)
3092  self.attr = dict(self.defaults)
3093  self.attr.update(attr)
def __init__
Definition: svgfig.py:3080
dictionary text_defaults
Definition: svgfig.py:3075
dictionary defaults
Definition: svgfig.py:3074

Member Function Documentation

def svgfig.Axes.__repr__ (   self)

Definition at line 3077 of file svgfig.py.

References svgfig.SVG.attr, svgfig.Path.attr, svgfig.Curve.attr, svgfig.Poly.attr, svgfig.Text.attr, svgfig.TextGlobal.attr, svgfig.Dots.attr, svgfig.Line.attr, svgfig.LineGlobal.attr, svgfig.VLine.attr, svgfig.HLine.attr, svgfig.Rect.attr, svgfig.Ellipse.attr, svgfig.Ticks.attr, svgfig.Axes.attr, svgfig.Plot.atx, svgfig.YAxis.atx, svgfig.Plot.aty, svgfig.XAxis.aty, svgfig.Axes.aty, svgfig.Axes.xmax, fftjetcms::LookupTable2d.xmin(), xmas2dqm::wse::FlashlistElements.xmin, ClusterizingHistogram.xmin, BremsstrahlungSimulator.xmin, fftjetcms::LinInterpolatedTable1D.xmin(), GammaFunctionGenerator.xmin, MuonBremsstrahlungSimulator.xmin, BaseNumericalRandomGenerator.xmin, cscdqm::AddressBox.xmin, AccretionCluster.xmin, TrackerMap.xmin, svgfig.Plot.ymax, svgfig.Frame.ymax, svgfig.Axes.ymax, fftjetcms::LookupTable2d.ymin(), Exhume::Event.ymin, cscdqm::AddressBox.ymin, AccretionCluster.ymin, and TrackerMap.ymin.

3078  def __repr__(self):
3079  return "<Axes x=(%g, %g) y=(%g, %g) at (%g, %g) %s>" % (self.xmin, self.xmax, self.ymin, self.ymax, self.atx, self.aty, self.attr)
def __repr__
Definition: svgfig.py:3077
def svgfig.Axes.SVG (   self,
  trans = None 
)
Apply the transformation "trans" and return an SVG object.

Definition at line 3094 of file svgfig.py.

References abs, svgfig.Plot.arrows, svgfig.Axes.arrows, svgfig.SVG.attr, svgfig.Path.attr, svgfig.Curve.attr, svgfig.Poly.attr, svgfig.Text.attr, svgfig.TextGlobal.attr, svgfig.Dots.attr, svgfig.Line.attr, svgfig.LineGlobal.attr, svgfig.VLine.attr, svgfig.HLine.attr, svgfig.Rect.attr, svgfig.Ellipse.attr, svgfig.Ticks.attr, svgfig.Axes.attr, svgfig.Plot.atx, svgfig.YAxis.atx, svgfig.Plot.aty, svgfig.XAxis.aty, svgfig.Axes.aty, svgfig.Plot.text_attr, svgfig.Frame.text_attr, svgfig.Ticks.text_attr, svgfig.Axes.text_attr, svgfig.Plot.xlabels, svgfig.Frame.xlabels, svgfig.Plot.xlogbase, svgfig.Frame.xlogbase, svgfig.Axes.xlogbase, svgfig.Axes.xmax, fftjetcms::LookupTable2d.xmin(), xmas2dqm::wse::FlashlistElements.xmin, ClusterizingHistogram.xmin, BremsstrahlungSimulator.xmin, GammaFunctionGenerator.xmin, fftjetcms::LinInterpolatedTable1D.xmin(), MuonBremsstrahlungSimulator.xmin, BaseNumericalRandomGenerator.xmin, cscdqm::AddressBox.xmin, AccretionCluster.xmin, TrackerMap.xmin, svgfig.Plot.xminiticks, svgfig.Frame.xminiticks, svgfig.Plot.xticks, svgfig.Frame.xticks, svgfig.Plot.ylabels, svgfig.Frame.ylabels, svgfig.Plot.ylogbase, svgfig.Frame.ylogbase, svgfig.Axes.ylogbase, svgfig.Plot.ymax, svgfig.Frame.ymax, svgfig.Axes.ymax, fftjetcms::LookupTable2d.ymin(), Exhume::Event.ymin, cscdqm::AddressBox.ymin, AccretionCluster.ymin, TrackerMap.ymin, svgfig.Plot.yminiticks, svgfig.Frame.yminiticks, svgfig.Plot.yticks, and svgfig.Frame.yticks.

3095  def SVG(self, trans=None):
3096  """Apply the transformation "trans" and return an SVG object."""
3097  atx, aty = self.atx, self.aty
3098  if atx < self.xmin: atx = self.xmin
3099  if atx > self.xmax: atx = self.xmax
3100  if aty < self.ymin: aty = self.ymin
3101  if aty > self.ymax: aty = self.ymax
3102 
3103  xmargin = 0.1 * abs(self.ymin - self.ymax)
3104  xexclude = atx - xmargin, atx + xmargin
3105 
3106  ymargin = 0.1 * abs(self.xmin - self.xmax)
3107  yexclude = aty - ymargin, aty + ymargin
3108 
3109  if self.arrows != None and self.arrows != False:
3110  xarrow_start = self.arrows + ".xstart"
3111  xarrow_end = self.arrows + ".xend"
3112  yarrow_start = self.arrows + ".ystart"
3113  yarrow_end = self.arrows + ".yend"
3114  else:
3115  xarrow_start = xarrow_end = yarrow_start = yarrow_end = None
3116 
3117  xaxis = XAxis(self.xmin, self.xmax, aty, self.xticks, self.xminiticks, self.xlabels, self.xlogbase, xarrow_start, xarrow_end, exclude=xexclude, text_attr=self.text_attr, **self.attr).SVG(trans)
3118  yaxis = YAxis(self.ymin, self.ymax, atx, self.yticks, self.yminiticks, self.ylabels, self.ylogbase, yarrow_start, yarrow_end, exclude=yexclude, text_attr=self.text_attr, **self.attr).SVG(trans)
3119  return SVG("g", *(xaxis.sub + yaxis.sub))
#define abs(x)
Definition: mlp_lapack.h:159

Member Data Documentation

svgfig.Axes.arrows

Definition at line 3086 of file svgfig.py.

Referenced by svgfig.Axes.SVG().

svgfig.Axes.attr

Definition at line 3091 of file svgfig.py.

Referenced by svgfig.Axes.__repr__(), svgfig.Axes.SVG(), svgfig.XErrorBars.SVG(), and svgfig.YErrorBars.SVG().

svgfig.Axes.aty

Definition at line 3083 of file svgfig.py.

Referenced by svgfig.Axes.__repr__(), and svgfig.Axes.SVG().

dictionary svgfig.Axes.defaults = {"stroke-width":"0.25pt"}
static

Definition at line 3074 of file svgfig.py.

svgfig.Axes.text_attr

Definition at line 3088 of file svgfig.py.

Referenced by svgfig.Axes.SVG().

dictionary svgfig.Axes.text_defaults = {"stroke":"none", "fill":"black", "font-size":5}
static

Definition at line 3075 of file svgfig.py.

svgfig.Axes.xlogbase

Definition at line 3084 of file svgfig.py.

Referenced by svgfig.Axes.SVG().

svgfig.Axes.xmax

Definition at line 3081 of file svgfig.py.

Referenced by svgfig.XAxis.__repr__(), svgfig.Axes.__repr__(), svgfig.HGrid.__repr__(), svgfig.Grid.__repr__(), and svgfig.Axes.SVG().

svgfig.Axes.ylogbase

Definition at line 3085 of file svgfig.py.

Referenced by svgfig.Axes.SVG().

svgfig.Axes.ymax

Definition at line 3082 of file svgfig.py.

Referenced by svgfig.YAxis.__repr__(), svgfig.Axes.__repr__(), svgfig.VGrid.__repr__(), svgfig.Grid.__repr__(), and svgfig.Axes.SVG().