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

Fix drill_feature parameter mismatch #311

Open
obucklin opened this issue Oct 29, 2024 · 1 comment
Open

Fix drill_feature parameter mismatch #311

obucklin opened this issue Oct 29, 2024 · 1 comment

Comments

@obucklin
Copy link
Contributor

obucklin commented Oct 29, 2024

Docstring and parameters don't match

`class DrillFeature(Feature):
"""Parametric drill hole to be made on an element.

Parameters
----------
plane : :class:`compas.geometry.Plane`
    The plane on which the drill hole is to be made.
diameter : float
    The diameter of the drill hole.
length : float
    The length (depth?) of the drill hole.

"""

def __init__(self, line, diameter, length, **kwargs):
    super(DrillFeature, self).__init__(**kwargs)
    self.line = line
    self.diameter = diameter
    self.length = length`
@chenkasirer
Copy link
Contributor

DrillFeature will be removed once we're fully transitioned to the new BTLx workflow (very soon..)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants