be clearer about floats
This commit is contained in:
parent
045b0c0228
commit
c95341c9b9
@ -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)
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user