mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-20 03:16:10 +00:00
corrected error (meshmodel -> CMeshO)
This commit is contained in:
parent
d69fc93b42
commit
eb023c2aae
@ -40,6 +40,7 @@ cache:
|
||||
directories:
|
||||
- $HOME/Library/Caches/Homebrew
|
||||
- $HOME/vcglib
|
||||
- $HOME/meshlab/src/external/lib/macx64
|
||||
script:
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then PATH="/usr/local/opt/llvm/bin:$PATH" ;fi
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which clang ;fi
|
||||
|
||||
@ -297,7 +297,7 @@ bool BaseMeshIOPlugin::save(const QString &formatName, const QString &fileName,
|
||||
}
|
||||
else if (pname.startsWith("PVA3F")){ // if pname starts with PVA3F, it is a PLY per-vertex point3f custom attribute
|
||||
if (par.findParameter(pname)->val->getBool()) // if it is true, add to save list
|
||||
pi.AddPerVertexPoint3fAttribute(m, qUtf8Printable(pname.mid(5)));
|
||||
pi.AddPerVertexPoint3fAttribute(m.cm, qUtf8Printable(pname.mid(5)));
|
||||
}
|
||||
else if (pname.startsWith("PFAF")){ // if pname starts with PFAF, it is a PLY per-face float custom attribute
|
||||
if (par.findParameter(pname)->val->getBool()) // if it is true, add to save list
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user