vertex
List of: Scheme Data Types
Subjects: Model Object, Model Topology
Contents: Scheme Support

Description: A vertex is a topological entity representing the end of one or more edges. Vertex refers to a point object in space, and to the edges that it bounds. Other edges are found by following pointers through coedges. vertex objects are saved and restored as part of the model.

Derivation: vertex : entity : scheme-object

C++ Type: VERTEX

External Rep: #[entity %d %d]

where the first integer is the entity ID,

and the second integer is the part ID

Example: ; vertex (data type)

; Create and inquire a vertex object.

(define my_block (solid:block


(position 4 8 -1) (position 35 35 35)))

;; my_block

(define my_vertices (entity:vertices my_block))

;; my_vertices

(vertex? (car (cdr (cdr (cdr my_vertices)))))

;; #t
PDF/SCM/09SD.PDF
HTM/DATA/SCM/SCM/09SD/0089.HTM