代码搜索:Direction
找到约 10,000 项符合「Direction」的源代码
代码结果 10,000
www.eeworm.com/read/270032/11050595
c panorama.c
/*
* Panoramic virtual screen implementation code fragment.
*
* Copyright (C) 1991, F. Kenton Musgrave
* All rights reserved.
*
* This code is an extension of Rayshade 4.0
* Copyright (C) 1989
www.eeworm.com/read/415674/11058627
c 96.c
#include
#include
#include
/*定义控制命令*/
#define LEFT 0x4b00
#define RIGHT 0x4d00
#define DOWN 0x5000
#define UP 0x4800
#define ESC 0x011b
/*定义蛇的最大节数*/
www.eeworm.com/read/269862/11072734
java snake.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Snake
{
public static void main(String[] args){
MainFrame mainframe=new MainFrame();
mainframe.setDefaultCl
www.eeworm.com/read/415368/11075126
c hello.c
/*------------------------------------------------------------------------------
HELLO.C: adapted for XC161/XC164 Board
Copyright 1995-2002 Keil Software, Inc.
-----------------------------------
www.eeworm.com/read/414751/11104164
hlp blwind.hlp
-----------------------------------------------------------------
BLWIND is a masked subsystem block, contained in the FDC libra-
ry WINDLIB. It calculates velocity components of a horizontal
wind
www.eeworm.com/read/269167/11107583
cpp player.cpp
#include "player.h"
void CPlayer::FireWeapon()
{
CRocket *newRocket = new CRocket;
newRocket->pitch = camera->pitch;
newRocket->direction = direction;
newRocket->position = position;
n
www.eeworm.com/read/413679/11146787
bak snake.cpp.bak
#include
#include
#include "snake.h"
#define N 100
#define LEFT 0x1012
#define RIGHT 0x1014
#define DOWN 0x1015
#define UP 0x1013
#define ESC 0x1000
#define PA