Skip to content
Permalink
8377d07783
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (13 sloc) 365 Bytes
#!/usr/bin/env python
"""
@author Peter Zaffetti 2018
"""
from stick_knot import StickKnot
class MonotonicallyFormattedCurve:
def __init__(self, knot_name, stick_knot):
self.knot_name = knot_name
self.stick_knot = stick_knot
def get_name(self):
return self.knot_name
def get_stick_knot(self):
return self.stick_knot