(
a: Union[
mrmesh.Vector3d,
mrmesh.Vector3i,
mrmesh.Vector3f,
mrmesh.Vector2d,
mrmesh.Vector2i,
mrmesh.Vector2f,
]
)
| 20 | |
| 21 | |
| 22 | def iteration_check( |
| 23 | a: Union[ |
| 24 | mrmesh.Vector3d, |
| 25 | mrmesh.Vector3i, |
| 26 | mrmesh.Vector3f, |
| 27 | mrmesh.Vector2d, |
| 28 | mrmesh.Vector2i, |
| 29 | mrmesh.Vector2f, |
| 30 | ] |
| 31 | ): |
| 32 | counter = 1 |
| 33 | for el in a: |
| 34 | assert el == counter |
| 35 | counter = counter + 1 |
| 36 | |
| 37 | |
| 38 | def test_Vector3(): |
no outgoing calls
no test coverage detected