Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
julienduroure committed Oct 30, 2023
1 parent 4f3bed8 commit 1548404
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,6 @@ def primitive_creation_shared(self):
for i in range(2):
res[:, i] = self.dots[attr + str(i)]

print(res)

self.attributes["TEXCOORD_" + str(next_texcoor_idx)] = {}
self.attributes["TEXCOORD_" + str(next_texcoor_idx)]["data"] = res
self.attributes["TEXCOORD_" + str(next_texcoor_idx)]["component_type"] = gltf2_io_constants.ComponentType.Float
Expand Down Expand Up @@ -587,8 +585,6 @@ def primitive_creation_not_shared(self):
for i in range(2):
res[:, i] = self.prim_dots[attr + str(i)]

print(res)

self.attributes["TEXCOORD_" + str(next_texcoor_idx)] = {}
self.attributes["TEXCOORD_" + str(next_texcoor_idx)]["data"] = res
self.attributes["TEXCOORD_" + str(next_texcoor_idx)]["component_type"] = gltf2_io_constants.ComponentType.Float
Expand Down

0 comments on commit 1548404

Please sign in to comment.