Exemple #1
0
 public static extern SU_RESULT SUGeometryInputFaceSetHidden(SUGeometryInputRef geom_input, size_t face_index, bool hidden);
Exemple #2
0
 public static extern SU_RESULT SUGeometryInputGetCounts(SUGeometryInputRef geom_input, ref size_t vertices_count, ref size_t faces_count, ref size_t edge_count, ref size_t curve_count, ref size_t arc_count);
Exemple #3
0
 public static extern SU_RESULT SUGeometryInputFaceAddInnerLoop(SUGeometryInputRef geom_input, size_t face_index, ref SULoopInputRef loop_input);
Exemple #4
0
 public static extern SU_RESULT SUGeometryInputFaceSetBackMaterial(SUGeometryInputRef geom_input, size_t face_index, ref SUMaterialInput material_input);
Exemple #5
0
 public static extern SU_RESULT SUGeometryInputFaceSetReverse(SUGeometryInputRef geom_input, size_t face_index, bool reverse);
Exemple #6
0
 public static extern SU_RESULT SUGeometryInputFaceSetLayer(SUGeometryInputRef geom_input, size_t face_index, SULayerRef layer);
Exemple #7
0
 public static extern SU_RESULT SULoopInputEdgeSetLayer(SUGeometryInputRef geom_input, size_t edge_index, SULayerRef layer);
Exemple #8
0
 public static extern SU_RESULT SUGeometryInputSetVertices(SUGeometryInputRef geom_input, size_t num_vertices, SUPoint3D[] points);
Exemple #9
0
 public static extern SU_RESULT SUGeometryInputAddCurve(SUGeometryInputRef geom_input, size_t num_edges, size_t[] edge_indices, ref size_t added_curve_index);
Exemple #10
0
 public static extern SU_RESULT SUGeometryInputAddArcCurve(SUGeometryInputRef geom_input, size_t start_point, size_t end_point, ref SUPoint3D center, ref SUVector3D normal, size_t num_segments, ref size_t added_curve_index, ref size_t control_edge_index);
Exemple #11
0
 public static extern SU_RESULT SUGeometryInputEdgeSetMaterial(SUGeometryInputRef geom_input, size_t edge_index, SUMaterialRef material);
Exemple #12
0
 public static extern SU_RESULT SUGeometryInputEdgeSetSmooth(SUGeometryInputRef geom_input, size_t edge_index, bool smooth);
Exemple #13
0
 public static extern SU_RESULT SUGeometryInputAddEdge(SUGeometryInputRef geom_input, size_t vertex0_index, size_t vertex1_index, ref size_t added_edge_index);
Exemple #14
0
 public static extern SU_RESULT SUGeometryInputRelease(ref SUGeometryInputRef geom_input);
Exemple #15
0
 public static extern SU_RESULT SUGeometryInputAddFace(SUGeometryInputRef geom_input, ref SULoopInputRef outer_loop, ref size_t added_face_index);
Exemple #16
0
 public static extern SU_RESULT SUGeometryInputAddVertex(SUGeometryInputRef geom_input, ref SUPoint3D point);
Exemple #17
0
 public static extern SU_RESULT SUEntitiesFill(SUEntitiesRef entities, SUGeometryInputRef geom_input, bool weld_vertices);