mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
9 lines
148 B
Python
9 lines
148 B
Python
class Matrix(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
|
|
class Vector3(Matrix):
|
|
def __init__(self):
|
|
super(Vector3, self).__init__()
|