예제 #1
0
 public static extern SU_RESULT SUGeometryInputFaceSetHidden(SUGeometryInputRef geom_input, size_t face_index, bool hidden);
예제 #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);
예제 #3
0
 public static extern SU_RESULT SUGeometryInputFaceAddInnerLoop(SUGeometryInputRef geom_input, size_t face_index, ref SULoopInputRef loop_input);
예제 #4
0
 public static extern SU_RESULT SUGeometryInputFaceSetBackMaterial(SUGeometryInputRef geom_input, size_t face_index, ref SUMaterialInput material_input);
예제 #5
0
 public static extern SU_RESULT SUGeometryInputFaceSetReverse(SUGeometryInputRef geom_input, size_t face_index, bool reverse);
예제 #6
0
 public static extern SU_RESULT SUGeometryInputFaceSetLayer(SUGeometryInputRef geom_input, size_t face_index, SULayerRef layer);
예제 #7
0
 public static extern SU_RESULT SULoopInputEdgeSetLayer(SUGeometryInputRef geom_input, size_t edge_index, SULayerRef layer);
예제 #8
0
 public static extern SU_RESULT SUGeometryInputSetVertices(SUGeometryInputRef geom_input, size_t num_vertices, SUPoint3D[] points);
예제 #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);
예제 #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);
예제 #11
0
 public static extern SU_RESULT SUGeometryInputEdgeSetMaterial(SUGeometryInputRef geom_input, size_t edge_index, SUMaterialRef material);
예제 #12
0
 public static extern SU_RESULT SUGeometryInputEdgeSetSmooth(SUGeometryInputRef geom_input, size_t edge_index, bool smooth);
예제 #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);
예제 #14
0
 public static extern SU_RESULT SUGeometryInputRelease(ref SUGeometryInputRef geom_input);
예제 #15
0
 public static extern SU_RESULT SUGeometryInputAddFace(SUGeometryInputRef geom_input, ref SULoopInputRef outer_loop, ref size_t added_face_index);
예제 #16
0
 public static extern SU_RESULT SUGeometryInputAddVertex(SUGeometryInputRef geom_input, ref SUPoint3D point);
예제 #17
0
 public static extern SU_RESULT SUEntitiesFill(SUEntitiesRef entities, SUGeometryInputRef geom_input, bool weld_vertices);