代码搜索:Direction
找到约 10,000 项符合「Direction」的源代码
代码结果 10,000
www.eeworm.com/read/162051/10343067
opt direction.opt
www.eeworm.com/read/162051/10343069
ncb direction.ncb
www.eeworm.com/read/417348/10993752
m direction.m
%% description
% In order to find the right direction to rotate, this
% program was provided.According to the algorithm, it's
% much too easy to choose di. However, this file was
% provided separ
www.eeworm.com/read/469157/6978583
m direction.m
function [x,v]=direction(x1,x2)
v1=p2(x1'); v2=p2(x2');
x3=x2+0.01*(x2-x1);
v3=p2(x3');
if v3>v2
x=x3;
v=v3;
else
x=x2;
v=v2;
end
www.eeworm.com/read/466447/7035064
h direction.h
#ifndef __DIRECTION__
#define __DIRECTION__
enum TRotationDirection
{
ERotationUp,
ERotationDown,
ERotationLeft,
ERotationRight
};
#endif
www.eeworm.com/read/466174/7040180
doc direction.doc
www.eeworm.com/read/414090/7121029
java direction.java
package jilaiqing;
public enum Direction {
L, LU, U, RU, R, RD, D, LD, STOP
}
www.eeworm.com/read/414090/7121066
class direction.class
www.eeworm.com/read/449189/7517118
class direction.class
www.eeworm.com/read/449189/7517120
java direction.java
//【例4.4】 设计点的坐标作为直线类的内部类。
public interface Direction //方向接口
{
public static final int LEFT=0; //声明4个方向的常量
public static final int RIGHT=1;
public static final int UP