Skip to content

Commit

Permalink
PLY Cleanup: redundant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mrachinskiy committed Jul 15, 2020
1 parent cb3f8ec commit 44bd540
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
6 changes: 3 additions & 3 deletions io_mesh_ply/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def poll(cls, context):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False # No animation.
layout.use_property_decorate = False

sfile = context.space_data
operator = sfile.active_operator
Expand All @@ -213,7 +213,7 @@ def poll(cls, context):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False # No animation.
layout.use_property_decorate = False

sfile = context.space_data
operator = sfile.active_operator
Expand All @@ -239,7 +239,7 @@ def poll(cls, context):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False # No animation.
layout.use_property_decorate = False

sfile = context.space_data
operator = sfile.active_operator
Expand Down
12 changes: 0 additions & 12 deletions io_mesh_ply/import_ply.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,6 @@ def load(self, format, stream):
for i in self.specs
}

# Longhand for above LC
"""
answer = {}
for i in self.specs:
answer[i.name] = []
for j in range(i.count):
if not j % 100 and meshtools.show_progress:
Blender.Window.DrawProgressBar(float(j) / i.count, 'Loading ' + i.name)
answer[i.name].append(i.load(format, stream))
return answer
"""


def read(filepath):
import re
Expand Down

0 comments on commit 44bd540

Please sign in to comment.