代码搜索:Direction

找到约 10,000 项符合「Direction」的源代码

代码结果 10,000
www.eeworm.com/read/414090/7121027

java plane.java

package jilaiqing; import java.awt.*; import java.awt.event.*; import java.util.*; public class Plane { public static final int XSPEED = 8; public static final int YSPEED = 8; private
www.eeworm.com/read/460348/7252967

c maze_rec.c

/* 迷宫问题的递归算法*/ #include #include #define M 8 #define N 11 /* 迷宫maze[M][N]中求从入口maze[x1][y1]到出口maze[x2][y2]的一条路径 */ /* 其中 1
www.eeworm.com/read/459953/7261383

js public.js

//******************************************************************/// //图像渐变效果,应用于浮动导航效果 //******************************************************************///
www.eeworm.com/read/457950/7315115

m mmse.m

function [ ]=MMSE(M,d,angle1,angle2,angle3) sig=0.001; theta=-pi/2:.01:pi/2; ang=theta*180/pi; th0=angle1*pi/180; th1=angle2*pi/180; th2=angle3*pi/180; n=1:M; disp(('The Distorted angle for
www.eeworm.com/read/457745/7318125

pas search.pas

unit search; interface uses WinProcs,Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Dialogs, StdCtrls, ComCtrls, Menus; const WordDelimiters: set of char=[#0..#255]-['a'.
www.eeworm.com/read/457360/7326890

afl 3 line break.afl

//------------------------------------------------------------------------------ // // Formula Name: 3 Line Break // Author/Uploader: Aron Pipa // E-mail: // Date/Time Added: 20
www.eeworm.com/read/280795/7337063

java chessboard.java

package BlackAndWhite; import BlackAndWhite.*; import java.util.*; class step{ public void save(Chessboard cb){ this.oldX=cb.oldX; this.oldY=cb.oldY; this.currentX=cb.currentX; this
www.eeworm.com/read/456728/7340173

c blinky.c

/******************************************************************************/ /* BLINKY.C: LED Flasher */ /***********************************
www.eeworm.com/read/456357/7351239

cc robot.cc

/* YAKS, a Khepera simulator including a separate GA and ANN (Genetic Algoritm, Artificial Neural Net). Copyright (C) 2000 Johan Carlsson (johanc@ida.his.se) This program is free software
www.eeworm.com/read/455033/7378989

hpp brentls.hpp

//====================================================================== // Definition of the BrentLineSearch class // Brent's line search algorithm // author: Wenceslau Gouveia, Adapted from Numerica