mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
9 lines
149 B
Python
9 lines
149 B
Python
class Matrix(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
|
|
class Vector3(Matrix):
|
|
def __init__(self):
|
|
super(Vector3, self).__in<caret>
|