Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename relative_margin to relativeMargin for consistency #95

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions qwt/scale_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,15 @@ def __init__(self, base=10):
self.__data = QwtScaleEngine_PrivateData()
self.setBase(base)

def autoScale(self, maxNumSteps, x1, x2, stepSize, relative_margin=0.0):
def autoScale(self, maxNumSteps, x1, x2, stepSize, relativeMargin=0.0):
"""
Align and divide an interval

:param int maxNumSteps: Max. number of steps
:param float x1: First limit of the interval (In/Out)
:param float x2: Second limit of the interval (In/Out)
:param float stepSize: Step size
:param float relative_margin: Margin as a fraction of the interval width
:param float relativeMargin: Margin as a fraction of the interval width
:return: tuple (x1, x2, stepSize)
"""
pass
Expand Down Expand Up @@ -474,24 +474,24 @@ class QwtLinearScaleEngine(QwtScaleEngine):
def __init__(self, base=10):
super(QwtLinearScaleEngine, self).__init__(base)

def autoScale(self, maxNumSteps, x1, x2, stepSize, relative_margin=0.0):
def autoScale(self, maxNumSteps, x1, x2, stepSize, relativeMargin=0.0):
"""
Align and divide an interval

:param int maxNumSteps: Max. number of steps
:param float x1: First limit of the interval (In/Out)
:param float x2: Second limit of the interval (In/Out)
:param float stepSize: Step size
:param float relative_margin: Margin as a fraction of the interval width
:param float relativeMargin: Margin as a fraction of the interval width
:return: tuple (x1, x2, stepSize)

.. seealso::

:py:meth:`setAttribute()`
"""
# Apply the relative margin (fraction of the interval width) in linear space:
if relative_margin > 0.0:
margin = (x2 - x1) * relative_margin
if relativeMargin > 0.0:
margin = (x2 - x1) * relativeMargin
x1 -= margin
x2 += margin

Expand Down Expand Up @@ -648,15 +648,15 @@ def __init__(self, base=10):
super(QwtLogScaleEngine, self).__init__(base)
self.setTransformation(QwtLogTransform())

def autoScale(self, maxNumSteps, x1, x2, stepSize, relative_margin=0.0):
def autoScale(self, maxNumSteps, x1, x2, stepSize, relativeMargin=0.0):
"""
Align and divide an interval

:param int maxNumSteps: Max. number of steps
:param float x1: First limit of the interval (In/Out)
:param float x2: Second limit of the interval (In/Out)
:param float stepSize: Step size
:param float relative_margin: Margin as a fraction of the interval width
:param float relativeMargin: Margin as a fraction of the interval width
:return: tuple (x1, x2, stepSize)

.. seealso::
Expand All @@ -669,10 +669,10 @@ def autoScale(self, maxNumSteps, x1, x2, stepSize, relative_margin=0.0):

# Apply the relative margin (fraction of the interval width) in logarithmic
# space, and convert back to linear space.
if relative_margin is not None:
if relativeMargin is not None:
x1 = min(max([x1, LOG_MIN]), LOG_MAX)
x2 = min(max([x2, LOG_MIN]), LOG_MAX)
log_margin = math.log(x2 / x1, logBase) * relative_margin
log_margin = math.log(x2 / x1, logBase) * relativeMargin
x1 /= math.pow(logBase, log_margin)
x2 *= math.pow(logBase, log_margin)

Expand Down
Loading