Coder Social home page Coder Social logo

hrtask's Introduction

soup2ply

The aim of the task is to transform the mesh consisting of flat triangles from the 'soup of triangles' to the PLY format.

Soup of triangles

List of vertices, three subsequent values represent a 3D vertex, nine subsequent values represent a planar triangle in 3D. Vertices are not unique, can appear multiple times in the file.

-9.659780e-02 -1.969390e-02 1.874010e-02
-9.673700e-02 -2.205980e-02 1.878610e-02
-9.683260e-02 -2.207070e-02 2.881010e-02
-9.683260e-02 -2.207070e-02 2.881010e-02
-9.670800e-02 -1.968200e-02 2.873670e-02
-9.659780e-02 -1.969390e-02 1.874010e-02
-9.682140e-02 -2.478340e-02 1.883970e-02
-9.692880e-02 -2.477640e-02 2.884680e-02
-9.683260e-02 -2.207070e-02 2.881010e-02
...

PLY format

PLY separates the definition of unique vertices and an element field with indices to the vertex field, see http://paulbourke.net/dataformats/ply/ or https://en.wikipedia.org/wiki/PLY_(file_format).

ply
format ascii 1.0
element vertex XXX
property float x 
property float y
property float z
element face YYY
property list uchar int vertex_indices
end_header
-9.659780e-02 -1.969390e-02 1.874010e-02
-9.673700e-02 -2.205980e-02 1.878610e-02
-9.683260e-02 -2.207070e-02 2.881010e-02
...
3 0 1 2
3 2 1 3
...

XXX ... number of vertices

YYY ... number of faces

Meshlab

The output PLY file can be viewed e.g. in Meshlab, see https://www.meshlab.net/#download.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.