The Visualization and Computer Graphics Library (VCG for short) is a open source portable C++ templated library for manipulation, processing and displaying mesh with use of OpenGL. Library page: vcg.isti.cnr.it/vcglib
Questions tagged [vcg]
24 questions
0
votes
2 answers
refining a mesh in VCG
Has anyone done trimesh refining in the VCG library? I would add that as a tag but I don't have high enough reputation yet. Every time I include any of the refine libraries I get the following…

Joshua Noble
- 830
- 2
- 12
- 26
0
votes
0 answers
Counting not outward oriented faces
How i can count not outward oriented faces?
The following code does not work. It is implemented in vcg lib and it is based in IsCoherentlyOrientedMesh() of…

sergio campo
- 190
- 2
- 13
0
votes
0 answers
Assertion failed: j>=0 && jVN(), file C:\vcglib-1.0.1\vcg/simplex/face/component_polygon.h, line 70
I compiled it in debug and release without any errors with the following environment:
Windows 10
32 bit MSVC 2015 V14 compiler
When I execute my program
C:\Users\me\Documents\projectCGALII\build\Debug>cgal_vtk_test.exe
pig.stl
I get the…

sergio campo
- 190
- 2
- 13
0
votes
0 answers
Visual studio 2017 became stuck when I compiled a program using VCG in release mode
Visual studio 2017 became stuck when I compiled a program using VCG in release mode; when i use debug mode, it compliles without problem.
To be specific, it became stuck while generating code in release mode.
Can someone tell me why?
Here is the…

Damons
- 153
- 1
- 1
- 7
0
votes
2 answers
Failed to to simplify 3D models with vcglib, Assertion `0' failed
I used vcglib to simplify 3D model file. I used the master_a8e87662 git repo. I run the sample trimesh_clustering to simplify a plf file format 3D model with this,
./trimesh_clustering ./Zeus.ply out.ply -k 1000
And get this error,
Input mesh …

LF00
- 27,015
- 29
- 156
- 295
0
votes
1 answer
Cannot run VCG Programs
I am very new to VCG. I've cloned the devel branch of the Git repo and tried to run the test/tetramesh program in theapps directory to test out the install. When I load it up in VS Community 2015 and compile, it fails.
Cannot open source file: No…

Dave Fyre
- 60
- 10
0
votes
0 answers
gcc compile issues for VCGlib
i am attempting to build samples of the vcglib project.
there are no makefile but some qmake files.
i have been banging my head trying to build a sample. but gcc is throwing up 100s of errors.
the main error is seems to be
#elif…

lpic
- 560
- 1
- 7
- 20
0
votes
1 answer
Cannot compile Vcg library in VS 2010
I'm trying to write simple program using VCG library
But I can't even pass compilation in VS 2010.
i copied example file from official page but it fails on this line
class MyMesh : public vcg::tri::TriMesh< std::vector,…

ziker
- 160
- 3
- 16
-1
votes
1 answer
3D Mesh model (.obj) Importing via vcglib causes Assertion 0 failed issue
I'm trying to Import OBJ format 3D mesh file via VCG Library with this code below
vcg::tri::io::Importer::Open(vcgMesh, path)
Almost every 3D mesh formats that /wrap/io_trimesh/import.h header supports are working fine. (STL, PLY, even…