代码搜索:intersection
找到约 1,060 项符合「intersection」的源代码
代码结果 1,060
www.eeworm.com/read/261198/11659819
m rectintsparse.m
function [overlap, normoverlap] = rectintSparse(A,B)
%
% A(i,:) = [x y w h]
% B(j,:) = [x y w h]
% overlap(i,j) = area of intersection
% normoverla(i,j)
%
% Same as built-in rectint, but uses l
www.eeworm.com/read/228533/14380241
c circrect.c
/*
Fast Circle-Rectangle Intersection Checking
by Clifford A. Shaffer
from "Graphics Gems", Academic Press, 1990
*/
#include "GGems.h"
boolean Check_Intersect(R, C, Rad)
/* Return TRUE iff rectang
www.eeworm.com/read/115326/15017953
makefile
samples:
cd Anagram; make samples; cd ..
cd Calculator; make samples; cd ..
cd Coloring; make samples; cd ..
cd Cube; make samples; cd ..
cd Equation; make samples; cd ..
cd Intersection; make s
www.eeworm.com/read/13871/284480
m rectintsparse.m
function [overlap, normoverlap] = rectintSparse(A,B)
%
% A(i,:) = [x y w h]
% B(j,:) = [x y w h]
% overlap(i,j) = area of intersection
% normoverla(i,j)
%
% Same as built-in rectint, but uses l
www.eeworm.com/read/227593/4773964
pm util.pm
package AI::Categorizer::Util;
use Exporter;
use base qw(Exporter);
@EXPORT_OK = qw(intersection average max min random_elements binary_search);
use strict;
# It's possible that this can be a class
www.eeworm.com/read/147186/12579153
m rectintsparse.m
function [overlap, normoverlap] = rectintSparse(A,B)
%
% A(i,:) = [x y w h]
% B(j,:) = [x y w h]
% overlap(i,j) = area of intersection
% normoverla(i,j)
%
% Same as built-in rectint, but uses l
www.eeworm.com/read/270032/11050816
c raybox.c
/*
Fast Ray-Box Intersection
by Andrew Woo
from "Graphics Gems", Academic Press, 1990
*/
#include "GraphicsGems.h"
#define NUMDIM 3
#define RIGHT 0
#define LEFT 1
#define MIDDLE 2
char HitBounding