mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 09:37:25 +00:00
14 lines
364 B
Python
14 lines
364 B
Python
# SPDX-License-Identifier: MIT
|
|
# Copyright (c) 2020 The Pybricks Authors
|
|
|
|
from typing import Collection, Optional, Tuple
|
|
|
|
class Matrix:
|
|
def __init__(self, rows: Collection[int]): ...
|
|
@property
|
|
def T(self) -> Matrix: ...
|
|
@property
|
|
def shape(self) -> Tuple[int, int]: ...
|
|
|
|
def vector(x: float, y: float, z: Optional[float] = None) -> Matrix: ...
|