代码搜索:Direction

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

代码结果 10,000
www.eeworm.com/read/454422/7391739

htm 06.htm

鼠标控制文字的滚动 marquee{ position:absolute; left:100; width:200; height:50; background:#6699FF; }
www.eeworm.com/read/451073/7472665

c main.c

#include /* common defines and macros */ #include /* derivative information */ #pragma LINK_INFO DERIVATIVE "mc9s12xs128" /***************************************
www.eeworm.com/read/448835/7525057

h arcan.h

/**************************************************************************** * * Proyecto ArCan * * Copyright (C) 2008-2009 Ra鷏 Milla P閞ez raulmp(at)arcan.es * http://www.arcan.es * *
www.eeworm.com/read/447287/7555089

htm 5-22.htm

var x, y, xold, yold, xdiff, ydiff; var dir = Array(); dir[0] = "n-resize"; dir[1]="ne-resize"; dir[2]="e-r
www.eeworm.com/read/443571/7630471

java tuttle.java

// Filename Tuttle.java. // Providing tuttle (turtle) graphics capabilities by // extending the Canvas class. // // Written for the Java Interface Book Chapter 4. // Some facilities not explained
www.eeworm.com/read/443169/7636706

c tls8201.c

void InitMain() { res=0; Delay(1); res=1; WCom(0xe2);//reset WCom(0x40);//start line WCom(0xa1);//seg direction: normal WCom(0xa6);//display reverse: normal WCom(0xa4);//display all p
www.eeworm.com/read/442337/7654706

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/442337/7654721

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/442337/7654735

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/442337/7654855

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