Skip to content

Instantly share code, notes, and snippets.

View nilpunch's full-sized avatar

Daniil Pankevich nilpunch

View GitHub Profile
@nilpunch
nilpunch / KdTree.cs
Last active May 31, 2022 09:41 — forked from ditzel/KdTree.cs
Somewhat refactored k-d tree.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
public interface IKdTreePosition
{
Vector3 Position { get; }
}