Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
5e4c7198
Commit
5e4c7198
authored
13 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
minor cleanup for ply export
parent
77d52086
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
io_mesh_ply/export_ply.py
+58
-46
58 additions, 46 deletions
io_mesh_ply/export_ply.py
with
58 additions
and
46 deletions
io_mesh_ply/export_ply.py
+
58
−
46
View file @
5e4c7198
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
#
#
# ##### END GPL LICENSE BLOCK #####
# ##### END GPL LICENSE BLOCK #####
# <pep8 compliant>
# <pep8
-80
compliant>
# Copyright (C) 2004, 2005: Bruce Merry, bmerry@cs.uct.ac.za
# Copyright (C) 2004, 2005: Bruce Merry, bmerry@cs.uct.ac.za
# Contributors: Bruce Merry, Campbell Barton
# Contributors: Bruce Merry, Campbell Barton
...
@@ -31,7 +31,14 @@ import bpy
...
@@ -31,7 +31,14 @@ import bpy
import
os
import
os
def
save
(
operator
,
context
,
filepath
=
""
,
use_modifiers
=
True
,
use_normals
=
True
,
use_uv_coords
=
True
,
use_colors
=
True
):
def
save
(
operator
,
context
,
filepath
=
""
,
use_modifiers
=
True
,
use_normals
=
True
,
use_uv_coords
=
True
,
use_colors
=
True
,
):
def
rvec3d
(
v
):
def
rvec3d
(
v
):
return
round
(
v
[
0
],
6
),
round
(
v
[
1
],
6
),
round
(
v
[
2
],
6
)
return
round
(
v
[
0
],
6
),
round
(
v
[
1
],
6
),
round
(
v
[
2
],
6
)
...
@@ -46,6 +53,7 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
...
@@ -46,6 +53,7 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
raise
Exception
(
"
Error, Select 1 active object
"
)
raise
Exception
(
"
Error, Select 1 active object
"
)
file
=
open
(
filepath
,
"
w
"
,
encoding
=
"
utf8
"
,
newline
=
"
\n
"
)
file
=
open
(
filepath
,
"
w
"
,
encoding
=
"
utf8
"
,
newline
=
"
\n
"
)
fw
=
file
.
write
if
scene
.
objects
.
active
:
if
scene
.
objects
.
active
:
bpy
.
ops
.
object
.
mode_set
(
mode
=
'
OBJECT
'
)
bpy
.
ops
.
object
.
mode_set
(
mode
=
'
OBJECT
'
)
...
@@ -60,33 +68,33 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
...
@@ -60,33 +68,33 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
# mesh.transform(obj.matrix_world) # XXX
# mesh.transform(obj.matrix_world) # XXX
faceUV
=
(
len
(
mesh
.
uv_textures
)
>
0
)
has_uv
=
(
len
(
mesh
.
uv_textures
)
>
0
)
vertex
UV
=
(
len
(
mesh
.
sticky
)
>
0
)
has_uv_
vertex
=
(
len
(
mesh
.
sticky
)
>
0
)
vertexColors
=
len
(
mesh
.
vertex_colors
)
>
0
has_vcol
=
len
(
mesh
.
vertex_colors
)
>
0
if
(
not
faceUV
)
and
(
not
vertex
UV
):
if
(
not
has_uv
)
and
(
not
has_uv_
vertex
):
use_uv_coords
=
False
use_uv_coords
=
False
if
not
vertexColors
:
if
not
has_vcol
:
use_colors
=
False
use_colors
=
False
if
not
use_uv_coords
:
if
not
use_uv_coords
:
faceUV
=
vertex
UV
=
False
has_uv
=
has_uv_
vertex
=
False
if
not
use_colors
:
if
not
use_colors
:
vertexColors
=
False
has_vcol
=
False
if
faceUV
:
if
has_uv
:
active_uv_layer
=
mesh
.
uv_textures
.
active
active_uv_layer
=
mesh
.
uv_textures
.
active
if
not
active_uv_layer
:
if
not
active_uv_layer
:
use_uv_coords
=
False
use_uv_coords
=
False
faceUV
=
Non
e
has_uv
=
Fals
e
else
:
else
:
active_uv_layer
=
active_uv_layer
.
data
active_uv_layer
=
active_uv_layer
.
data
if
vertexColors
:
if
has_vcol
:
active_col_layer
=
mesh
.
vertex_colors
.
active
active_col_layer
=
mesh
.
vertex_colors
.
active
if
not
active_col_layer
:
if
not
active_col_layer
:
use_colors
=
False
use_colors
=
False
vertexColors
=
Non
e
has_vcol
=
Fals
e
else
:
else
:
active_col_layer
=
active_col_layer
.
data
active_col_layer
=
active_col_layer
.
data
...
@@ -106,10 +114,10 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
...
@@ -106,10 +114,10 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
normal
=
tuple
(
f
.
normal
)
normal
=
tuple
(
f
.
normal
)
normal_key
=
rvec3d
(
normal
)
normal_key
=
rvec3d
(
normal
)
if
faceUV
:
if
has_uv
:
uv
=
active_uv_layer
[
i
]
uv
=
active_uv_layer
[
i
]
uv
=
uv
.
uv1
,
uv
.
uv2
,
uv
.
uv3
,
uv
.
uv4
# XXX - crufty :/
uv
=
uv
.
uv1
,
uv
.
uv2
,
uv
.
uv3
,
uv
.
uv4
# XXX - crufty :/
if
vertexColors
:
if
has_vcol
:
col
=
active_col_layer
[
i
]
col
=
active_col_layer
[
i
]
col
=
col
.
color1
[:],
col
.
color2
[:],
col
.
color3
[:],
col
.
color4
[:]
col
=
col
.
color1
[:],
col
.
color2
[:],
col
.
color3
[:],
col
.
color4
[:]
...
@@ -123,17 +131,19 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
...
@@ -123,17 +131,19 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
normal
=
tuple
(
v
.
normal
)
normal
=
tuple
(
v
.
normal
)
normal_key
=
rvec3d
(
normal
)
normal_key
=
rvec3d
(
normal
)
if
faceUV
:
if
has_uv
:
uvcoord
=
uv
[
j
][
0
],
1.0
-
uv
[
j
][
1
]
uvcoord
=
uv
[
j
][
0
],
1.0
-
uv
[
j
][
1
]
uvcoord_key
=
rvec2d
(
uvcoord
)
uvcoord_key
=
rvec2d
(
uvcoord
)
elif
vertex
UV
:
elif
has_uv_
vertex
:
uvcoord
=
v
.
uvco
[
0
],
1.0
-
v
.
uvco
[
1
]
uvcoord
=
v
.
uvco
[
0
],
1.0
-
v
.
uvco
[
1
]
uvcoord_key
=
rvec2d
(
uvcoord
)
uvcoord_key
=
rvec2d
(
uvcoord
)
if
vertexColors
:
if
has_vcol
:
color
=
col
[
j
]
color
=
col
[
j
]
color
=
int
(
color
[
0
]
*
255.0
),
int
(
color
[
1
]
*
255.0
),
int
(
color
[
2
]
*
255.0
)
color
=
(
int
(
color
[
0
]
*
255.0
),
int
(
color
[
1
]
*
255.0
),
int
(
color
[
2
]
*
255.0
),
)
key
=
normal_key
,
uvcoord_key
,
color
key
=
normal_key
,
uvcoord_key
,
color
vdict_local
=
vdict
[
vidx
]
vdict_local
=
vdict
[
vidx
]
...
@@ -146,47 +156,49 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
...
@@ -146,47 +156,49 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
pf
.
append
(
pf_vidx
)
pf
.
append
(
pf_vidx
)
file
.
write
(
'
ply
\n
'
)
fw
(
"
ply
\n
"
)
file
.
write
(
'
format ascii 1.0
\n
'
)
fw
(
"
format ascii 1.0
\n
"
)
file
.
write
(
'
comment Created by Blender %s - www.blender.org, source file: %r
\n
'
%
(
bpy
.
app
.
version_string
,
os
.
path
.
basename
(
bpy
.
data
.
filepath
)))
fw
(
"
comment Created by Blender %s -
"
"
www.blender.org, source file: %r
\n
"
%
(
bpy
.
app
.
version_string
,
os
.
path
.
basename
(
bpy
.
data
.
filepath
)))
f
ile
.
write
(
'
element vertex %d
\n
'
%
len
(
ply_verts
))
f
w
(
"
element vertex %d
\n
"
%
len
(
ply_verts
))
f
ile
.
write
(
'
property float x
\n
'
)
f
w
(
"
property float x
\n
"
file
.
write
(
'
property float y
\n
'
)
"
property float y
\n
"
file
.
write
(
'
property float z
\n
'
)
"
property float z
\n
"
)
if
use_normals
:
if
use_normals
:
f
ile
.
write
(
'
property float nx
\n
'
)
f
w
(
"
property float nx
\n
"
file
.
write
(
'
property float ny
\n
'
)
"
property float ny
\n
"
file
.
write
(
'
property float nz
\n
'
)
"
property float nz
\n
"
)
if
use_uv_coords
:
if
use_uv_coords
:
f
ile
.
write
(
'
property float s
\n
'
)
f
w
(
"
property float s
\n
"
file
.
write
(
'
property float t
\n
'
)
"
property float t
\n
"
)
if
use_colors
:
if
use_colors
:
f
ile
.
write
(
'
property uchar red
\n
'
)
f
w
(
"
property uchar red
\n
"
file
.
write
(
'
property uchar green
\n
'
)
"
property uchar green
\n
"
file
.
write
(
'
property uchar blue
\n
'
)
"
property uchar blue
\n
"
)
f
ile
.
write
(
'
element face %d
\n
'
%
len
(
mesh
.
faces
))
f
w
(
"
element face %d
\n
"
%
len
(
mesh
.
faces
))
f
ile
.
write
(
'
property list uchar uint vertex_indices
\n
'
)
f
w
(
"
property list uchar uint vertex_indices
\n
"
)
f
ile
.
write
(
'
end_header
\n
'
)
f
w
(
"
end_header
\n
"
)
for
i
,
v
in
enumerate
(
ply_verts
):
for
i
,
v
in
enumerate
(
ply_verts
):
f
ile
.
write
(
'
%.6f %.6f %.6f
'
%
mesh_verts
[
v
[
0
]].
co
[:])
# co
f
w
(
"
%.6f %.6f %.6f
"
%
mesh_verts
[
v
[
0
]].
co
[:])
# co
if
use_normals
:
if
use_normals
:
f
ile
.
write
(
'
%.6f %.6f %.6f
'
%
v
[
1
])
# no
f
w
(
"
%.6f %.6f %.6f
"
%
v
[
1
])
# no
if
use_uv_coords
:
if
use_uv_coords
:
f
ile
.
write
(
'
%.6f %.6f
'
%
v
[
2
])
# uv
f
w
(
"
%.6f %.6f
"
%
v
[
2
])
# uv
if
use_colors
:
if
use_colors
:
f
ile
.
write
(
'
%u %u %u
'
%
v
[
3
])
# col
f
w
(
"
%u %u %u
"
%
v
[
3
])
# col
f
ile
.
write
(
'
\n
'
)
f
w
(
"
\n
"
)
for
pf
in
ply_faces
:
for
pf
in
ply_faces
:
if
len
(
pf
)
==
3
:
if
len
(
pf
)
==
3
:
f
ile
.
write
(
'
3 %d %d %d
\n
'
%
tuple
(
pf
))
f
w
(
"
3 %d %d %d
\n
"
%
tuple
(
pf
))
else
:
else
:
f
ile
.
write
(
'
4 %d %d %d %d
\n
'
%
tuple
(
pf
))
f
w
(
"
4 %d %d %d %d
\n
"
%
tuple
(
pf
))
file
.
close
()
file
.
close
()
print
(
"
writing %r done
"
%
filepath
)
print
(
"
writing %r done
"
%
filepath
)
...
@@ -197,7 +209,7 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
...
@@ -197,7 +209,7 @@ def save(operator, context, filepath="", use_modifiers=True, use_normals=True, u
# XXX
# XXX
"""
"""
if is_editmode:
if is_editmode:
Blender.Window.EditMode(1,
''
, 0)
Blender.Window.EditMode(1,
""
, 0)
"""
"""
return
{
'
FINISHED
'
}
return
{
'
FINISHED
'
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment