Action:
|
Creates a sheet body from a given face.
|
|
Filename:
|
cstr/cstr_scm/sht_scm.cxx
|
|
APIs:
|
api_mk_by_faces
|
|
Syntax:
|
(sheet:face face)
|
|
Arg Types:
|
face
|
face
|
|
Returns:
|
body
|
|
Description:
|
This extension creates a single-sided sheet body from a given
face. A sheet body is similar to a solid body except a sheet body is infinitely thin.
|
|
|
In the following example, note the solid side of the sheet body (material) and the void side (air).
|
|
|
face is an input face argument.
|
|
Example:
|
; sheet:face
|
|
; Create a face.
|
|
(define face1 (face:plane (position 0 0 15) 50 50))
|
|
;; face1
|
|
; Create a sheet body from a face.
|
|
(define sheet1 (sheet:face face1))
|
|
;; sheet1
|