Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kbandela

    C++ API to read the publications

    I am writing a plugin where I need to read the publications under a product I am able to read the publication names using this code. CATIProduct_var spProductInst = GetProductInstance(); CATIPrdObjectPublisher_var piPublisher = NULL_var; HRESULT hr =...
  2. kbandela

    API to read the backshell connection point definition

    Hi All, I am looking for CATIA API which can provide the point definition shown in the picture below: I saw few interfaces: CATIMeasurableInContext and CATIMeasurablePlane. From CATIMeasurableInContext, I could read the type and found that it is of type CATIMeasurablePlane. But, I haven't...
  3. kbandela

    CATIA API to get the segment point names

    What is the API to get the segment end point names? The extremity interface CATIEhiBnlSegmentExtremity doesn't provide the point name but instead gives a name like SegmentExtremity.1. I want the get the point name as shown in the segment definition (attached screen capture). Appreciate any help...
  4. kbandela

    What is the C++ CAA API corresponding to "Measure Between" toolbar action

    On a related note, how do we find (through CATIA API) the length between two points on a curve segment. Please note that it is not minimum distance between which I require but the length of the segment between the two points along the cirve.
  5. kbandela

    What is the C++ CAA API corresponding to "Measure Between" toolbar action

    I am new to CATIA environment and need help on this issue: I want to measure the distance between two points of a segment. One point is the bundle extremity and the other is a point defined in the geometrical set and lying on the segment. I see that interactively we could do this through...
Back
Top