代码搜索:Direction

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

代码结果 10,000
www.eeworm.com/read/250225/12423273

m sinclobe.m

function lobevector = sinclobe % DESCRIPTION lobevector = sinclobe % Creates an antenna gain lobe vector. The antenna lobe is approximated % with a log(sinc) within the sector and with -30 dB outsid
www.eeworm.com/read/250043/12441581

java waterwar.java

import java.awt.*; import java.applet.*; import java.awt.event.*; import java.awt.image.*; import java.awt.geom.*; import java.util.Random; class WaterObject extends Thread{ static final int
www.eeworm.com/read/148556/12459588

java enemy.java

import java.awt.*; public class enemy implements Actor{ public final int UP = 0; public final int DOWN = 1; public final int LEFT = 2; public final int RIGHT = 3; public final int size =
www.eeworm.com/read/148556/12459623

java bullet.java

import java.awt.*; public class bullet implements Actor{ public final Rectangle map = new Rectangle(18, 18, 486, 486); private Rectangle border; private int direction; private int Speed;
www.eeworm.com/read/148556/12459662

java player.java

import java.awt.*; public class player implements Actor{ public final int UP = 0; public final int DOWN = 1; public final int LEFT = 2; public final int RIGHT = 3; public final int size =
www.eeworm.com/read/148556/12459909

java bullet.java

import java.awt.*; public class bullet implements Actor{ public int xPos; public int yPos; public ClientModel gameModel; public int direction; public String Type = "bullet"; public bu
www.eeworm.com/read/131630/14135126

java ant.java

/* * This code is from the book: * * Winder, R and Roberts, G (2000) Developing Java * Software, second edition, John Wiley & Sons. * * It is copyright (c) 2000 Russel Winder and Graham
www.eeworm.com/read/233803/14135574

cpp lcs.cpp

#include #include #include #include using namespace std; enum direction {north, west, nw}; int print_LCS(enum direction **b, char *X, int i, int j); i
www.eeworm.com/read/232832/14180390

cpp robot.cpp

#include"robot.h" #include #include using namespace std; int Robot::Move(){ //Moving the robot,detecting the environment and saving //it to Electronic Map(EM). //Return Valu
www.eeworm.com/read/130291/14198674

java urrobot.java

/** * The ur_Robot is the origin of all robots. It handles the communication with the World the robot * is in. It also defines the base functionality of a robot. That is some query methods like av