Giter Club home page Giter Club logo

triangle_strip's Introduction

Triangle Strip

This repository provides an easy to use python function that generates a (not guaranteed optimal) triangle strip out of a set of connected triangles.

This can be especially useful for converting regular triangle based meshes into a triangle strip based one. Such a version can then be used inside a geometry shader. More information and use cases of triangle strips can be found on Wikipedia: Triangle strip

If you got any improvements for the module feel free to raise an issue or contact me.

Example

Just call the find_strip function with a list of triangles:

icosahedron_triangles = [[0, 1, 2],
                         [3, 1, 0],
                         [4, 1, 3],
                         [5, 1, 4],
                         [2, 1, 5],
                         [6, 7, 8],
                         [8, 7, 9],
                         [9, 7, 10],
                         [10, 7, 11],
                         [11, 7, 6],
                         [0, 2, 6],
                         [2, 5, 11],
                         [5, 4, 10],
                         [4, 3, 9],
                         [3, 0, 8],
                         [8, 0, 6],
                         [9, 3, 8],
                         [10, 4, 9],
                         [11, 5, 10],
                         [6, 2, 11]]

print("Trying to find a triangle strip representation of an icosahedron")
triangle_strip = find_strip(icosahedron_triangles)
print("Triangle strip:", triangle_strip)
print("Length of the triangle strip:", len(triangle_strip))

A triangle is just a list of three elements that are comparable and represent the vertices of that triangle. This could either be an integer describing the vertex id (as in the case of this example) or a custom object that is comparable and contains the position of that vertex.

License

This code is licensed under The Unlicense. More information can be found in the LICENSE file in this repository.

triangle_strip's People

Contributors

gruco0002 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

triangle_strip's Issues

RecursionError: maximum recursion depth exceeded in comparison

hi im trying with a list of triangles of lenght 1168 and i have this error

C:\Users\marco\Documents\Visual Studio Code\PES_WE_JL_Model_Tool\file_structure\utils>py test.py
Traceback (most recent call last):
  File "test.py", line 1174, in <module>
    strip = find_strip(faces)
  File "C:\Users\marco\Documents\Visual Studio Code\PES_WE_JL_Model_Tool\file_structure\utils\triangle_strip.py", line 195, in find_strip
    result = find_strip_internal(
  File "C:\Users\marco\Documents\Visual Studio Code\PES_WE_JL_Model_Tool\file_structure\utils\triangle_strip.py", line 82, in find_strip_internal
    result = find_strip_internal(
  File "C:\Users\marco\Documents\Visual Studio Code\PES_WE_JL_Model_Tool\file_structure\utils\triangle_strip.py", line 164, in find_strip_internal
    result = find_strip_internal(
  File "C:\Users\marco\Documents\Visual Studio Code\PES_WE_JL_Model_Tool\file_structure\utils\triangle_strip.py", line 164, in find_strip_internal
    result = find_strip_internal(
  File "C:\Users\marco\Documents\Visual Studio Code\PES_WE_JL_Model_Tool\file_structure\utils\triangle_strip.py", line 164, in find_strip_internal
    result = find_strip_internal(
  [Previous line repeated 992 more times]
  File "C:\Users\marco\Documents\Visual Studio Code\PES_WE_JL_Model_Tool\file_structure\utils\triangle_strip.py", line 60, in find_strip_internal
    for i in range(len(triangles)):
RecursionError: maximum recursion depth exceeded in comparison

test.zip

i uploaded my testing file, i need to get the strip for those triangles, if you can improve the code in python or even another language but giving sort of like a library for python will be amazing i need something to convert triangle to triangle strip, i'm willing to pay for it

thanks a lot!

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.