?? graphics.pl
字號(hào):
/********************************************************************
Constraint-based Graphical Programming in B-Prolog
%
Animate fancy graphics
*********************************************************************/
:-include(binaryTree).
:-include(circleChart).
:-include(sierpinski).
:-include(squares).
:-include(triangles).
:-include(pythagoras).
:-write('type animate to start'),nl.
animate:-
animate([pythagoras,binaryTree,circleChart,sierpinski,squares,triangles]).
animate(Progs):-
cgStartRecordAnimation(graphics), % save the applet into graphics.java
member(Prog,Progs),
Call=..[Prog,Frame],
call(Call),
cgPack(Frame),
cgResize(Frame,Frame1,300,300),
cgMove(Frame1,Frame2,100,100),
cgCleanDefaultWindow,
cgShow(Frame2),
cgSleep(1000),
fail.
animate(Progs):-
cgStopRecord.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -