pycatia.hybrid_shape_interfaces.hybrid_shape_point_on_surface

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-07-06 14:02:20.222384

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.hybrid_shape_interfaces.hybrid_shape_point_on_surface.HybridShapePointOnSurface(com_object)

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
MecModInterfaces.HybridShape
CATGSMIDLItf.Point
HybridShapePointOnSurface

Represents the Point on Surface feature objects.
Role: Allows to access data of the point feature created with a geodesic
distance in a direction to a reference point on a surface

See also:
Length
See also:
Reference
See also:
HybridShapeDirection
See also:
HybridShapeFactory
property direction: HybridShapeDirection

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Direction() As HybridShapeDirection

Returns or Sets the direction from the reference point in which the point
is computed.

Example
:
This example retrieves in oDirection the direction from the reference
point for PointOnSurface feature.

Dim oDirection As CATIAHybridShapeDirection
Set oDirection = PointOnSurface.Direction
Return type:

HybridShapeDirection

property offset: Length

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Offset() As Length (Read Only)

Returns the geodesic length.

Example
:
This example retrieves in oGeodesicOffset the offset (Geodesic Length)
from the reference point for PointOnSurface feature.

Dim oGeodesicOffset As CATIAReference
Set oGeodesicOffset = PointOnSurface.GeodesicOffset
Return type:

Length

property point: Reference

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Point() As Reference

Returns or Sets the reference point.
This data is not mandatory.
If no point is given, the middle point on the surface is
taken.
Sub-element(s) supported (see Boundary object): Vertex.

Example
:
This example retrieves in oPointRef the reference point for
PointOnSurface feature.

Dim oPointRef As CATIAReference
Set oPointRef = PointOnSurface.PointRef
Return type:

Reference

property surface: Reference

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Surface() As Reference

Returns or Sets the surface.
Sub-element(s) supported (see Boundary object): Face.

Example
:
This example retrieves in oSurface the supporting surface for
PointOnSurface feature.

Dim oSurface As CATIAReference
Set oSurface = PointOnSurface.Surface
Return type:

Reference