Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Format Python code with psf/black push #422

Merged
merged 1 commit into from
Mar 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion p5/core/vertex.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ def end_contour():
contour_vertices_types.append(curr_contour_vertices_types)
curr_contour_vertices, curr_contour_vertices_types = [], []
elif builtins.current_renderer == "skia":

vert_data = copy.deepcopy(contour_vertices[0])
vert_data[-1]["is_vert"] = contour_vertices[0][-1].get("is_vert", None)
vert_data[-1]["move_to"] = False
Expand Down
2 changes: 1 addition & 1 deletion p5/sketch/Skia2DRenderer/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def frame_buffer_resize_callback_handler(self, window, width, height):
self.pixel_density = width * height // (self.size[0] * self.size[1])

# Creates an Image of current surface and a copy of current style configurations
# For the purpose of handling setup_method() re-call
# For the purpose of handling setup_method() re-call
# Ref: Issue #419
old_image = self.surface.makeImageSnapshot()
old_image = old_image.resize(old_image.width(), old_image.height())
Expand Down
1 change: 0 additions & 1 deletion p5/sketch/Skia2DRenderer/renderer2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,6 @@ def _do_fill_stroke_close(self, close_shape):
def end_shape(
self, mode, vertices, is_curve, is_bezier, is_quadratic, is_contour, shape_kind
):

close_shape = mode == constants.CLOSE
# NOT APPENDING AGAIN
num_verts = len(vertices)
Expand Down
4 changes: 1 addition & 3 deletions p5/sketch/Vispy2DRenderer/openglrenderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,7 @@ def render_default(self, draw_type, draw_queue):
for vertices, idx, color in draw_queue:
num_shape_verts = len(vertices)

data["position"][
sidx : (sidx + num_shape_verts),
] = np.array(vertices)
data["position"][sidx : (sidx + num_shape_verts),] = np.array(vertices)

color_array = np.array([color] * num_shape_verts)
data["color"][sidx : sidx + num_shape_verts, :] = color_array
Expand Down
2 changes: 0 additions & 2 deletions p5/sketch/Vispy2DRenderer/renderer2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,6 @@ def load_font(self, font_name):
return self.create_font(font_name)

def text(self, text_string, position, wrap_at):

multiline = False
if not (wrap_at is None):
text_string = textwrap.fill(text_string, wrap_at)
Expand Down Expand Up @@ -538,7 +537,6 @@ def text_wrap(self, text_wrap_style):
raise NotImplementedError("Not Implemented in Vispy")

def image(self, img, x, y, w, h):

location = (x, y)
if w is None:
w = img.size[0]
Expand Down
8 changes: 2 additions & 6 deletions p5/sketch/Vispy3DRenderer/renderer3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,13 +384,9 @@ def render_with_shaders(self, draw_type, draw_obj):
# it's information to the buffer.
#
draw_indices = []
data["position"][
0:num_vertices,
] = np.array(vertices)
data["position"][0:num_vertices,] = np.array(vertices)
draw_indices.append(idx)
data["normal"][
0:num_vertices,
] = np.array(normals)
data["normal"][0:num_vertices,] = np.array(normals)
self.vertex_buffer.set_data(data)
self.index_buffer.set_data(np.hstack(draw_indices))

Expand Down
2 changes: 1 addition & 1 deletion p5/sketch/userspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def size(width, height):
# return with no change in size when called from frame buffer resize callback
# this is to handle setup function re-call during resize
# Ref: Issue #419
if(builtins.current_renderer == "skia" and not p5.sketch.resized):
if builtins.current_renderer == "skia" and not p5.sketch.resized:
return

builtins.width = int(width)
Expand Down
1 change: 0 additions & 1 deletion p5/visualTests/sanityTests/2DSanityTests/test4.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ def setup():


def draw():

if frame_count > 30:
exit()
# Sets the screen to be 640 pixels wide and 360 pixels high
Expand Down
1 change: 1 addition & 0 deletions p5/visualTests/sanityTests/2DSanityTests/test8.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

y = 0


# The statements in the setup() function
# run once when the program begins
def setup():
Expand Down