找回密码
 立即注册

QQ登录

只需一步,快速开始

楼主: yuanguoan

[基础] 5轴编程刀轴控制方法讲解

 火... [复制链接]

2

主题

121

回帖

66

积分

注册会员

积分
66
发表于 2015-9-3 23:37:48 | 显示全部楼层
钱钱钱,,,木有钱
回复

使用道具 举报

15

主题

284

回帖

353

积分

中级会员

积分
353
发表于 2015-9-5 07:58:04 | 显示全部楼层
学习一下,谢谢分享
回复

使用道具 举报

2

主题

121

回帖

66

积分

注册会员

积分
66
发表于 2016-3-15 14:37:08 | 显示全部楼层
看看是不是真的
回复

使用道具 举报

4

主题

25

回帖

15

积分

新手上路

积分
15
发表于 2016-3-15 19:28:17 | 显示全部楼层
就不懂我看看呐NAME
2 ]9 f0 u' \' y2 L1 m, ?; L3 Jafter - Execute a command after a time delay
) i! S" z) e1 t$ q: hSYNOPSIS! m. Z; J- I5 z
after ms2 ~0 K8 Q6 H. b& K3 ?1 C
after ms ?script script script ...?
4 i. W" u  O% i+ aafter cancel id
# i; H& b4 `7 b. Iafter cancel script script script ...3 p+ H3 C8 @- G- X) X
after idle ?script script script ...?
/ ~+ N3 {& k$ N; [: o9 Uafter info ?id?
. t% \8 w% K$ U2 r8 Z- ~/ dDESCRIPTION
2 Y# j; F  {' o! ~after ms
/ m) \% g- }5 z7 V. V6 R+ gafter ms ?script script script ...?
2 l- s9 f$ r" _0 K" xafter cancel id4 C" X  O# ]* l" n
after cancel script script ...
3 Y( [4 H# S5 U. lafter idle script ?script script ...?
- N0 ~5 h* f+ S$ D7 h# W( G5 oafter info ?id?
+ E7 H; j; k- Q4 rSEE ALSO
8 p& |& a  R+ W3 W2 pKEYWORDS8 j  b$ r, H5 j$ R3 T  i
NAME
7 S9 U: K4 S* X3 Z6 K- t' D8 k  O5 f/ h% @: a$ Q% W# B* h
after - Execute a command after a time delay9 p+ W7 Q2 E4 l5 E, x, B
SYNOPSIS
9 r# k1 n6 g( H5 X2 ]: n" w
( \4 A7 n4 a2 ^# L6 vafter ms
: [% {; T( l+ ^9 o/ y# p* uafter ms ?script script script ...?, V' K& B2 n, i( P2 x
after cancel id
/ |" e3 e' z  X0 A" x# Oafter cancel script script script ...* |6 d; i+ u% C2 g! ~
after idle ?script script script ...?5 V# I' [; v* q' a$ b
after info ?id?' e; [; Q8 C  s
DESCRIPTION" V5 R# t( G: {/ X0 L
1 |. t  a: S* f/ ~' O- w
This command is used to delay execution of the program or to execute a command in background sometime in the future. It has several forms, depending on the first argument to the command:/ Y+ d7 n, O1 w) j7 ~$ C
after ms
% c5 i4 r# [" G% T0 GMs must be an integer giving a time in milliseconds. The command sleeps for ms milliseconds and then returns. While the command is sleeping the application does not respond to events.. y& ^  C) V7 }; `6 L
after ms ?script script script ...?
* o0 }& X- R9 wIn this form the command returns immediately, but it arranges for a Tcl command to be executed ms milliseconds later as an event handler. The command will be executed exactly once, at the given time. The delayed command is formed by concatenating all the script arguments in the same fashion as the concat command. The command will be executed at global level (outside the context of any Tcl procedure). If an error occurs while executing the delayed command then the bgerror mechanism is used to report the error. The after command returns an identifier that can be used to cancel the delayed command using after cancel.
) H# Z4 E, v: }) P, rafter cancel id
/ j2 X. f) c, G* R( Q8 wCancels the execution of a delayed command that was previously scheduled. Id indicates which command should be canceled; it must have been the return value from a previous after command. If the command given by id has already been executed then the after cancel command has no effect.
8 }# j/ w2 q4 s9 Uafter cancel script script ...* [1 n# i! t5 \( \8 G6 J. d
This command also cancels the execution of a delayed command. The script arguments are concatenated together with space separators (just as in the concat command). If there is a pending command that matches the string, it is cancelled and will never be executed; if no such command is currently pending then the after cancel command has no effect.
, b, w7 l+ L4 T, n8 B2 B' p( s" V4 dafter idle script ?script script ...?
2 {) s+ @, N9 EConcatenates the script arguments together with space separators (just as in the concat command), and arranges for the resulting script to be evaluated later as an idle callback. The script will be run exactly once, the next time the event loop is entered and there are no events to process. The command returns an identifier that can be used to cancel the delayed command using after cancel. If an error occurs while executing the script then the bgerror mechanism is used to report the error.
4 [. d: ^; s1 j- G# |after info ?id?
& c) z2 C5 {9 Y+ j0 CThis command returns information about existing event handlers. If no id argument is supplied, the command returns a list of the identifiers for all existing event handlers created by the after command for this interpreter. If id is supplied, it specifies an existing handler; id must have been the return value from some previous call to after and it must not have triggered yet or been cancelled. In this case the command returns a list with two elements. The first element of the list is the script associated with id, and the second element is either idle or timer to indicate what kind of event handler it is.
8 c& S8 C, x  |" IThe after ms and after idle forms of the command assume that the application is event driven: the delayed commands will not be executed unless the application enters the event loop. In applications that are not normally event-driven, such as tclsh, the event loop can be entered with the vwait and update commands.
6 X  z$ ~$ x2 k& i5 j$ y- P& o/ z3 d% y1 V) K9 g
SEE ALSO( W- `; q5 k2 V; b( W/ ?4 o

* R3 r3 \. I$ q, Y% D# lbgerror
- \6 m/ y: s5 \, P% x: SKEYWORDS* n; ]/ `# e: k# V1 t8 e

$ \* _- k3 h' \- h( Mcancel, delay, idle callback, sleep, time- r  M0 O% y$ |0 P: d
Copyright © 1990-1994 The Regents of the University of California.
/ ?6 F2 W  D# Y# j- ^* n* XCopyright © 1994-1996 Sun Microsystems, Inc.$ T6 x5 b3 \0 W7 H
Copyright © 1995-1997 Roger E. Critchlow Jr.
回复

使用道具 举报

0

主题

3

回帖

5

积分

新手上路

积分
5
发表于 2016-3-18 07:54:44 | 显示全部楼层
谢谢楼主辛苦了
回复

使用道具 举报

0

主题

219

回帖

257

积分

注册会员

积分
257
发表于 2016-5-20 16:07:21 | 显示全部楼层
謝謝大大提供
回复

使用道具 举报

0

主题

320

回帖

246

积分

注册会员

积分
246
发表于 2016-9-2 09:58:01 | 显示全部楼层
正需要呢。。。。。
回复

使用道具 举报

0

主题

19

回帖

25

积分

注册会员

积分
25
发表于 2016-10-3 16:34:35 | 显示全部楼层
很好的资料  好人一生平安
回复

使用道具 举报

0

主题

49

回帖

30

积分

注册会员

积分
30
发表于 2017-12-28 20:55:13 | 显示全部楼层
学习学习了
回复

使用道具 举报

0

主题

464

回帖

1263

积分

实习版主

积分
1263
发表于 2017-12-28 21:52:34 | 显示全部楼层
學習學習.謝謝分享,好資料
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

站长推荐上一条 /2 下一条

QQ|Archiver|手机版|小黑屋|若枫后处理论坛 ( 苏ICP备11015087号-1|苏公网安备32059002001368号 )

GMT+8, 2024-3-29 13:17 , Processed in 0.296400 second(s), 19 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表