代码搜索:Direction
找到约 10,000 项符合「Direction」的源代码
代码结果 10,000
www.eeworm.com/read/472498/6869202
java player.java
import java.awt.*;
/**
* 定义吃豆者的类
*/
public class Player{
private int xPos;
private int yPos;
private int xVPos;
private int yVPos;
private int speed;
private int direction;
pri
www.eeworm.com/read/471212/6899443
m mexgraphbetweennesscentrality.m
function [BetweennessCentrality, Nodes] = mexGraphBetweennessCentrality(Graph,Nodes,Direction,ShowProgress)
% Computes betweenneess centrality of each node.
%
% Receives:
% Graph - Graph
www.eeworm.com/read/471212/6899541
m mexgraphhits.m
function PageRank = mexGraphHITS(Graph, Iterations, Direction, ShowProgress)
% Implements the HITS(????) algorithm on the Graph. The algorithm computes interactively HUBS and AUTHORITIES indeces fo
www.eeworm.com/read/471212/6899560
m mexgraphallnodeshortestpasses.m
function [ShortesPasses, varargin] = mexGraphAllNodeShortestPasses(Graph,Node,Direction)
% For the specified node in graph, the function returns a list of ALL shortes passes to each of the nodes, con
www.eeworm.com/read/195484/8150589
h pango-types.h
/* Pango
* pango-types.h:
*
* Copyright (C) 1999 Red Hat Software
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
www.eeworm.com/read/395537/8168609
m ntrust.m
function [x,histout,costdata] = ntrust(x0,f,tol,maxit,resolution)
%
%
% C. T. Kelley, Dec 15, 1997
%
% This code comes with no guarantee or warranty of any kind.
%
% function [x,histout,costdata] = nt
www.eeworm.com/read/395537/8168643
m ntrust.m
function [x,histout,costdata] = ntrust(x0,f,tol,maxit,resolution)
%
%
% C. T. Kelley, Dec 15, 1997
%
% This code comes with no guarantee or warranty of any kind.
%
% function [x,histout,costdata] = nt
www.eeworm.com/read/194440/8195120
m flipx.m
function flipx
% FLIPX: script to flip the direction of the x axis
%
% just type "flipx" at the matlab prompt
state=get(gca,'xdir');
if(strcmp(state,'normal'))
set(gca,'xdir','reverse')
else
www.eeworm.com/read/194440/8195133
m flipy.m
function flipy
% FLIPY: script to flip the direction of the y axis
%
% just type "flipy" at the matlab prompt
state=get(gca,'ydir');
if(strcmp(state,'normal'))
set(gca,'ydir','reverse')
else
www.eeworm.com/read/394400/8226416
java cell.java
import javax.swing.Icon;
import javax.swing.JButton;
public class Cell extends JButton {
Cell(Icon icon){//实际为ICON
super(icon);
this.setSize(100,100);
}
public void move(String dire