be clearer about floats

This commit is contained in:
Jan Petykiewicz 2024-07-31 22:50:34 -07:00
parent 045b0c0228
commit c95341c9b9
2 changed files with 4 additions and 4 deletions

View File

@ -297,7 +297,7 @@ class GridDrawMixin(GridPosMixin):
p = numpy.array([[-dimensions[0], +dimensions[1]],
[+dimensions[0], +dimensions[1]],
[+dimensions[0], -dimensions[1]],
[-dimensions[0], -dimensions[1]]], dtype=float) / 2.0
[-dimensions[0], -dimensions[1]]], dtype=float) * 0.5
thickness = dimensions[2]
self.draw_polygon(cell_data, 2, center, p, thickness, foreground)

View File

@ -29,9 +29,9 @@ if __name__ == '__main__':
# numpy.linspace(-5.5, 5.5, 10)]
half_x = [.25, .5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 3.5]
xyz3 = [numpy.array([-x for x in half_x[::-1]] + [0] + half_x),
numpy.linspace(-5.5, 5.5, 10),
numpy.linspace(-5.5, 5.5, 10)]
xyz3 = [numpy.array([-x for x in half_x[::-1]] + [0] + half_x, dtype=float),
numpy.linspace(-5.5, 5.5, 10, dtype=float),
numpy.linspace(-5.5, 5.5, 10, dtype=float)]
eg = Grid(xyz3)
egc = eg.allocate(0)
# eg.draw_slab(Direction.z, 0, 10, 2)