Description:
|
A
conical-face is a geometric entity that is a face that is conical in nature.
conical-face objects are saved and restored as part of the model.
|
|
Derivation:
|
conical-face : face : entity : scheme-object
|
|
C++ Type:
|
FACE->CONE
|
|
External Rep:
|
#[entity %d %d]
|
|
where the first integer is the entity ID,
|
|
and the second integer is the part ID.
|
|
Example:
|
; conical-face (data type)
|
|
; Define and inquire a conical-face object.
|
|
(define my_cyl (solid:cylinder (position 0 0 0)
|
|
|
(position 25 25 0) 30))
|
|
;; my_cyl
|
|
(define my_faces (entity:faces my_cyl))
|
|
;; my_face
|
|
; (#[entity 2 1] #[entity 3 1] #[entity 4 1])
|
|
(conical-face (car my_faces))
|
|
;; #f
|
|
(face? (car my_faces))
|
|
;; #t
|