代码搜索:intersection
找到约 1,060 项符合「intersection」的源代码
代码结果 1,060
www.eeworm.com/read/161513/5551787
java roadlayer.java
// **********************************************************************
//
//
//
// BBN Technologies
// 10 Moulton Street
// Cambridge, MA 02138
// (617) 873-8000
//
// Copyright
www.eeworm.com/read/161513/5551796
java route.java
// **********************************************************************
//
//
//
// BBN Technologies
// 10 Moulton Street
// Cambridge, MA 02138
// (617) 873-8000
//
// Copyright
www.eeworm.com/read/294345/8239589
h bing.h
#include"singlelist.h"
template
void Intersection(SingleList &Lc,SingleList &Ld)
{
T x;
int i=0;
while(i
www.eeworm.com/read/369313/9655653
m lhiquerypolygon.m
function [Dq, j] = LMquerypolygon(D, objectname, Xo, Yo, threshold)
%
% Search the database for images that contain an object matching a query
% shape.
%
% [Dq, j] = LMquerypolygon(D, objectname, poly
www.eeworm.com/read/172931/9682109
cpp aabb3.cpp
/////////////////////////////////////////////////////////////////////////////
//
// 3D Math Primer for Games and Graphics Development
//
// AABB3.cpp - Implementation for class AABB3
//
// Visit
www.eeworm.com/read/270032/11050741
c raycphdron.c
/* Ray-Convex Polyhedron Intersection Test by Eric Haines, erich@eye.com
*
* This test checks the ray against each face of a polyhedron, checking whether
* the set of intersection points found for
www.eeworm.com/read/147186/12578994
m myintersect.m
function C = myintersect(A,B)
% MYINTERSECT Intersection of two sets of positive integers (much faster than built-in intersect)
% C = myintersect(A,B)
A = A(:)'; B = B(:)';
if isempty(A)
ma
www.eeworm.com/read/202224/15389183
m mm3802.m
x=linspace(0,10);
y=sin(x);
z=2*cos(2*x);
plot(x,y,x,z)
xlabel X
ylabel Y
title 'Figure 38.2: Intersection of Two Curves'
www.eeworm.com/read/201037/15417872
h maze.h
struct InterSection
{
int left;
int forward;
int right;
};
class Maze
{
private:
int mazeSize;
InterSection *intSec;
int Exit;
public:
Maze(char *filename); //构造函数
~Maze(v
www.eeworm.com/read/112652/15479678
cpp demo8_4.cpp
// DEMO8_4.CPP 8-bit polygon rotation demo
// INCLUDES ///////////////////////////////////////////////
#define WIN32_LEAN_AND_MEAN // just say no to MFC
#define INITGUID
#include