i need help in writing code for a constructor that takes the parameters x, y and angle. can anyone show me how to write it.
|
closed as not a real question by Martijn Pieters, Junuxx, Jamey Sharp, Emil Vikström, andrewsi Nov 15 '12 at 19:34
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
The constructor is always written as a function called The You access fields (members) of the instance using the |
||||
|
|
See the Python tutorial. |
|||
|
|
|
Constructors are delcared with __init__(self, rest of params) so in this case:
You can read more here: Class definition in python |
|||
|
|
class MyClass(SuperClass):
def __init__(self, *args, **kwargs):
super(MyClass, self).__init__(*args, **kwargs)
# do initialization
|
|||||||
|