New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

k-tree

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

k-tree

  • 0.0.8
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= K-Tree

{Join the chat at https://gitter.im/flajann2/k-tree}[https://gitter.im/flajann2/k-tree?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge]

K-Tree is a data structure that generalizes the notion of Quadtrees and Octrees. The nodes subdivides the n-dimentional space into equal subsections of 2^n k-tants (quadrants for 2-dimensional spaces, octants for 3-dimensional) down to your desired level of resolution, and during the creation allows you to decide whether or not to keep the child nodes based on your criteria for whether or not there's enough variance.

The coordinats of the midpoint of all these sections are maintained by k-tree and are therefore enumerable.

== Gem Version {Gem Version}[http://badge.fury.io/rb/k-tree] {Travis}[https://travis-ci.org/flajann2/k-tree]

== Usage

== Examples

For now, I will use the spec as example of usage. This is lame, I'll admit, but I will improve this shortly.

require 'k-tree' include KTree

let(:ktree) do KTree.create do |node, vchildren| rand(3) != 5 end end

it "created a tree" do expect(ktree).to_not be_nil end

it "has nodes" do expect(ktree.root).to_not be_nil end

it "upper and lower coords are never equal" do ktree.each do |node| expect(node.upper).to_not eq node.lower end end

== Known Issues Currently K-Tree does not support "nearest neighbor" queries, as this is beyond the scope of the current needs of the author. Check out kd-tree amd r-tree for that. Or feel free to add that functionality and do a pull request.

== Contributing to k-tree

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2014 Fred Mitchell. See LICENSE.txt for further details.

FAQs

Package last updated on 22 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc