Skip to content

Commit

Permalink
cleaner (#2)
Browse files Browse the repository at this point in the history
refactoring! renaming! removing of unneeded abstractions. unifying.

use linked list
  • Loading branch information
Hellblazer authored Aug 26, 2023
1 parent 6d94660 commit 7b6bb5a
Show file tree
Hide file tree
Showing 19 changed files with 572 additions and 600 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.hellblazer.luciferase.sentinel.delaunay;
package com.hellblazer.luciferase.sentinel;

import java.util.LinkedList;
import java.util.Set;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
the Common Public License - v1.0, which accompanies this distribution, and is
available at http://www.eclipse.org/legal/cpl-v10.html
****************************************************************************/
package com.hellblazer.luciferase.sentinel.delaunay;
package com.hellblazer.luciferase.sentinel;

import javax.vecmath.Point3d;
import javax.vecmath.Tuple3d;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hellblazer.luciferase.sentinel.delaunay;
package com.hellblazer.luciferase.sentinel;

/**
* @author <a href="mailto:hal.hildebrand@gmail.com">Hal Hildebrand</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hellblazer.luciferase.sentinel.delaunay;
package com.hellblazer.luciferase.sentinel;

/**
* @author <a href="mailto:hal.hildebrand@gmail.com">Hal Hildebrand</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hellblazer.luciferase.sentinel.delaunay;
package com.hellblazer.luciferase.sentinel;

import java.util.AbstractSet;
import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.hellblazer.luciferase.sentinel.delaunay;
package com.hellblazer.luciferase.sentinel;

import static com.hellblazer.luciferase.sentinel.delaunay.V.B;
import static com.hellblazer.luciferase.sentinel.delaunay.V.C;
import static com.hellblazer.luciferase.sentinel.delaunay.V.D;
import static com.hellblazer.luciferase.sentinel.V.B;
import static com.hellblazer.luciferase.sentinel.V.C;
import static com.hellblazer.luciferase.sentinel.V.D;

import java.util.Iterator;
import java.util.LinkedList;
Expand Down
Loading

0 comments on commit 7b6bb5a

Please sign in to comment.