项目作者: hjwdzh

项目描述 :
A renderer that takes a triangle mesh, a camera pose and produce a SVG image or visible part of the mesh.
高级语言: C++
项目地址: git://github.com/hjwdzh/VectorGraphRenderer.git
创建时间: 2020-02-12T05:49:14Z
项目社区:https://github.com/hjwdzh/VectorGraphRenderer

开源协议:MIT License

下载


VectorGraphRenderer

A renderer that takes a triangle mesh, a camera pose and produce a vector graph.

VectorGraphRender Teaser

Compile

  1. mkdir build
  2. cmake .. -DCMAKE_BUILD_TYPE=Release
  3. make -j8

Run example

Run binary with three arguments. The first is the input mesh, the second the camera parameters, and the third the output file.

If the output file ends with svg, we produce a svg image file. If the output file ends with obj, we produce a obj mesh output.

Example of running the script:

  1. ./vector_render ../example/sphere.obj ../example/matrix.txt result.svg