代码搜索:pull
找到约 1,526 项符合「pull」的源代码
代码结果 1,526
www.eeworm.com/read/100594/15870283
h shortpat.h
#pragma ShortPath
#include
/* find the shortest paths from a vertex in a directed graph */
typedef void *PathIterator ; /* pull paths out of this */
void OpenPathIterator (Graph gra
www.eeworm.com/read/38039/1091737
mnu chgtandft.mnu
CHG#TAN#DRFT 改变相切拔模
#
Options 选项
Choose option.
选择选项。
Draft#Line 拔模线
Change draft line.
改变拔模线
Pull#Dir 拖拉方向
Change pull direction.
改变拖拉方向。
Tangency#Pnt 切点
Change tangent location on a surface.
改变在曲面上
www.eeworm.com/read/136989/5834709
cpp counting_supplier.cpp
// Counting_Supplier.cpp,v 1.6 2003/11/02 23:27:22 dhinton Exp
#include "Counting_Supplier.h"
#include "ace/OS_NS_unistd.h"
ACE_RCSID(CEC_Tests, CEC_Count_Supplier, "Counting_Supplier.cpp,v 1.6
www.eeworm.com/read/131179/5947684
ebf frmrdapullquery.ebf
VERSION 5.00
Begin VB.Form frmRDAPullQuery
Appearance = 0 'Flat
BackColor = &H00FFC0C0&
Caption = "RDA - Pull"
ClientHeight = 2745
ClientLeft
www.eeworm.com/read/336887/12411381
m extractridge.m
function ridge = ExtractRidge(ridgenum,wt,skellist,skelptr,skellen,oct,sc)
% ExtractRidge -- Pull One Ridge Continuous Wavelet Transform
% Usage
% ridge = ExtractRidge(ridgenum,wt,skellist,skel
www.eeworm.com/read/249104/4457495
java high.java
package carstate;
//高速档:
class High extends State {
public void pull (Car wrapper) {
wrapper.setState (new Off ());
System.out.println ("挂空档");
}
}
www.eeworm.com/read/249104/4457497
java low.java
package carstate;
//慢速档:
class Low extends State {
public void pull( Car wrapper ) {
wrapper.setState( new Medium() );
System.out.println( "挂中速" );
}
}
www.eeworm.com/read/249104/4457500
java medium.java
package carstate;
//中速档:
class Medium extends State{
public void pull( Car wrapper ) {
wrapper.setState( new High() );
System.out.println( "挂高速" );
}
}
www.eeworm.com/read/314491/3631987
cpp notimp.cpp
// NOTIMP.CPP
//
// Generates .ASM files for functions not implemented in windows,
// along with linker response file (NOTIMP.RSP) which will pull
// all the .OBJ files into a lib.
//
// Us