How to use the meshzoo.simple_arrow function in meshzoo

To help you get started, we’ve selected a few meshzoo examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github nschloe / meshzoo / test / test_meshzoo.py View on Github external
def test_simple_arrow():
    points, cells = meshzoo.simple_arrow()
    assert len(points) == 5
    assert _near_equal(numpy.sum(points, axis=0), [7.0, 0.0, 0.0])
    assert len(cells) == 4