journal:resume
List of: Scheme Extensions
Subjects: Scheme AIDE Application
Contents: Scheme Support

Action: Resumes journaling in the journal file again after pausing.

Filename: scm/scmext/jrl_scm.cxx

Syntax: (journal:resume)

Arg Types: None

Returns: unspecified

Example: ; journal:resume

; Turn journaling on.

(journal:on)

;; "j015.jrl"

; Create solid block 1.

(define block1


(solid:block (position 0 0 0)


(position 10 10 10)))

;; block1

; Temporarily disable journaling.

(journal:pause)

;; ()

; Create solid block 2.

(define block2


(solid:block (position 5 10 15)


(position 10 20 35)))

;; block2

; Resume journaling.

(journal:resume)

;; ()

; Create solid block 3.

(define block3


(solid:block (position -5 10 -15)


(position 10 -20 35)))

;; block3

; Turn journaling off

(journal:off)

;; ()

; Save the resulting journal.

(journal:save "j015.jrl")

;; "j015.jrl"

; Clear the part.

(part:clear)

;; #t

; Load the journal file to recreate

; and redisplay the solid block.

(journal:load "j015.jrl")

;;

;; (journal:on)

;; "j015.jrl"

;; (define block1 (solid:block

;; (position 0 0 0) (position 10 10 10)))

;; block1

;; (journal:pause)

;; (journal:resume)

;; ()

:: (define block3 (solid:block

;; (position -5 10 -15) (position 10 -20 35)))

;; block3

;; (journal:off)

;; "j015.jrl"
PDF/SCM/04SC.PDF
HTM/DATA/SCM/SCM/04SC/0070.HTM