Navigation
API > API/Runtime > API/Runtime/CADKernel > API/Runtime/CADKernel/FTopologicalEdge
Description
Split the edge at input coordinate. The initial edge will be used for the first edge, the second edge will be return.
| Name | SplitAt |
| Type | function |
| Header File | /Engine/Source/Runtime/Datasmith/CADKernel/Base/Public/Topo/TopologicalEdge.h |
| Include Path | #include "Topo/TopologicalEdge.h" |
| Source | /Engine/Source/Runtime/Datasmith/CADKernel/Base/Private/Topo/TopologicalEdge.cpp |
FTopologicalVertex * SplitAt
(
double SplittingCoordinate,
const FVector & NewVertexCoordinate,
bool bKeepStartVertexConnectivity,
TSharedPtr < FTopologicalEdge > & OutNewEdge
)
Parameters
| Name | Remarks |
|---|---|
| SplittingCoordinate | |
| NewVertexCoordinate | |
| bKeepStartVertexConnectivity | if true the new edge is connected to endVertex, otherwise the new edge is connected to start vertex |
| OutNewEdge, the | second edge |