PK_BODY_topology_t   

typedef int PK_BODY_topology_t;

Used in:

PK_BODY_make_lofted_body_o_t
PK_BODY_make_swept_body_2_o_t
PK_BODY_make_swept_body_o_t


This datatype specifies how bodies created by lofting and sweeping will
be divided into faces. See the documentation for the relevant PK function for
more specific details on how each value affects the resultant topology.

It has three values:
    PK_BODY_topology_minimal_c  Produce the minimum number of faces (default).

    PK_BODY_topology_columns_c  Produces columns of faces corresponding to the
                                profile edges. For a single profile, the result
                                is a column of faces for each edge in the
                                profile. For multiple profiles, the result is a
                                column of faces for each set of corresponding
                                edges in the profiles. Each column of faces
                                will contain the minimum number of faces.

    PK_BODY_topology_grid_c     Produces a grid of faces. Additional edges may
                                be created, so that the number of faces in each
                                column of faces is equal to or greater than the
                                number produced with
                                PK_BODY_topology_columns_c.