代码搜索:KdTree
找到约 206 项符合「KdTree」的源代码
代码结果 206
www.eeworm.com/read/410656/11272870
txt readme.txt
Name: kdtree
Author: Steven Michael (smichael@ll.mit.edu)
Date: 3/1/2005
############################################################
The following code implements a KDTree search algorithm
in M
www.eeworm.com/read/432105/8631829
h kdtree.h
/*
This file is part of ``kdtree'', a library for working with kd-trees.
Copyright (C) 2007-2009 John Tsiombikas
Redistribution and use in source and binary forms, with or wi
www.eeworm.com/read/432105/8631845
c kdtree.c
/*
This file is part of ``kdtree'', a library for working with kd-trees.
Copyright (C) 2007-2009 John Tsiombikas
Redistribution and use in source and binary forms, with or wi
www.eeworm.com/read/432103/8631950
o kdtree.o
www.eeworm.com/read/432103/8631975
kdtree_test
www.eeworm.com/read/387009/8712122
h kdtree.h
template struct Boxnode : Box {
Int mom, dau1, dau2, ptlo, pthi;
Boxnode() {}
Boxnode(Point mylo, Point myhi, Int mymom, Int myd1,
Int myd2, Int myptlo, Int mypthi) :
www.eeworm.com/read/282485/9090558
cpp kdtree.cpp
// KdTree.cpp: implementation of the CKdTree class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "KdTree.h"
/////////////////////////
www.eeworm.com/read/282485/9090754
h kdtree.h
// KdTree.h: interface for the CKdTree class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_KDTREE_H__EB2D8BEB_6899_4E38_AB14_C71CB9C6C41F__INCLUDED_)
www.eeworm.com/read/379363/9199723
h kdtree.h
#ifndef __KDTREE_H__
#define __KDTREE_H__
#include "RVODef.h"
#define HORIZONTAL_SPLIT -1
#define VERTICAL_SPLIT -2
namespace RVO {
class KDTree
{
struct AgentTreeNode {
int
www.eeworm.com/read/379363/9199738
cpp kdtree.cpp
#include "RVOSimulator.h"
#include "Agent.h"
#include "Obstacle.h"
#include "KDTree.h"
namespace RVO {
RVOSimulator* KDTree::_sim = RVOSimulator::Instance();
KDTree::KDTree(void)
{