hedge_dstpoint
int hedge_dstpoint(<geometry>geometry, int hedge)
Returns -1 if the half-edge hedge is invalid. Otherwise, returns the point number of the destination point of the half-edge hedge.
geometry
The name of the geometry file to reference. Inside Houdini, this may be op:full_path_to_sop to reference a SOP.
hedge
Input half-edge.
Examples
examples
Section titled “examples”int dstpt;
// Get vertex number of half-edge number 3.dstpt = hedge_dstpoint("defgeo.bgeo", 3);