This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.badlogic.gdx.tests.lwjgl3; | |
| import com.badlogic.gdx.utils.Array; | |
| import com.badlogic.gdx.utils.IntArray; | |
| import com.badlogic.gdx.utils.Pool; | |
| /** | |
| * Port of https://github.com/earcut4j/earcut4j for libgdx with 0 allocation | |
| * Original port of mapbox/earcut | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************************************************************* | |
| * Copyright 2011 See AUTHORS file. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
OlderNewer