Skip to content

karai17/lua-winged-edge

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

Lua Winged Edge

Lua Winged Edge piggy backs off of my Wavefront Object Loader library (among others) to create a comprehensive Winged Edge data structure. For further reading, please check the Documentation.

Quick Example

local we = require "winged-edge"

local object = we.new("some_object.obj")

for face in ipairs(obj.faces) do
	local adjacent = we.traverse(face, object)

	for _, adj_face in ipairs(adjacent) do
		print(face, adj_face)
	end
end

License

This code is licensed under the MIT Open Source License. Check out the LICENSE file for more information.

About

Winged Edge Data Structure in Lua

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages