代码搜索:Direction
找到约 10,000 项符合「Direction」的源代码
代码结果 10,000
www.eeworm.com/read/381207/9104632
m makeellip.m
function [x, y]= makeellip( x0, y0, radiusx, radiusy, angleinterval)
% (x0, y0 ) = center of circle
% radiusx = radius in x direction (a)
% radiusy = radius in y direction (b)
% angleinterval = a
www.eeworm.com/read/282107/9119123
cpp geometry.cpp
/*
Copyright (C) 2001 Tsinghuaeolus
Authors : ChenJiang, YaoJinyi, CaiYunpeng, Lishi
This library is free software; you can redistribute it and/or
modify it under the terms of
www.eeworm.com/read/380538/9143232
java nextframe.java
/*
* 创建日期 2005-6-24
*
* TODO 要更改此生成的文件的模板,请转至
* 窗口 - 首选项 - Java - 代码样式 - 代码模板
*/
package game;
import java.util.Random;
import java.util.TimerTask;
/**
* @author Administrator
*
www.eeworm.com/read/380499/9144678
m filter_edge_sobelprewitt.m
function varargout = filter_edge_sobelprewitt(varargin)
if nargin == 0
p1 = struct( ...
'Name', 'Method', ...
'Style', 'popup', ...
'DefaultValue', 1, ...
'Items', { {'Sob
www.eeworm.com/read/380178/9158596
m dirstretch.m
%DIRSTRETCH variable directional stretching of a complex vector
%
% DIRSTRETCH(X,D) where X is a complex vector and D a complex scalar stretches X by abs(D) along the direction arg(D)
% if D is a v
www.eeworm.com/read/183079/9179463
java snake.java
/*
*游戏的主画布类
*/
import Javax.Swing.*;
import java.awt.*;
public class GameCanvas extends JPanel
{
private int rows = 30, cols = 30;
private int boxWidth, boxHeight;
private Color bgCo
www.eeworm.com/read/183069/9179740
pas aspiunit.pas
{-----------------------------------------------------------------------------
Unit Name: ASPIUnit
Author: Sergey Kabikov
Purpose: ASPI Functions
History: Functions by Sergey Kabikov ba
www.eeworm.com/read/183069/9179743
pas sptiunit.pas
{-----------------------------------------------------------------------------
Unit Name: SptiFunctions
Author: Dancemammal
Purpose: w2k spti functions version
History: First Code Releas
www.eeworm.com/read/182767/9191995
c alloca.c
/* alloca.c -- allocate automatically reclaimed memory
(Mostly) portable public-domain implementation -- D A Gwyn
This implementation of the PWB library alloca function,
which is used to all
www.eeworm.com/read/182634/9198273
java snakepanel.java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
public class SnakePanel extends JPanel
implements Runnable,KeyListener{
public SnakePanel(SnakeFrame pare