|
Action:
|
Determines the relationship of given point to a given entity (POINT,
EDGE,
FACE, or
BODY).
|
|
|
Prototype:
|
outcome api_ptent_rel (
|
|
|
APOINT* point,
|
// given point
|
|
|
ENTITY* entity,
|
// given entity
|
|
|
point_entity_rel*& rel,
|
// relationship between a
|
|
|
|
|
// point and an entity
|
|
|
|
|
// returned
|
|
|
AcisOptions* ao = NULL
|
// ACIS options
|
|
|
);
|
|
|
Includes:
|
#include "kernel/acis.hxx"
|
|
#include "intersct/kernapi/api/intrapi.hxx"
|
|
#include "intersct/sg_husk/query/ptentrel.hxx"
|
|
#include "kernel/kernapi/api/api.hxx"
|
|
#include "kernel/kerndata/data/entity.hxx"
|
|
#include "kernel/kerndata/geom/point.hxx"
|
|
#include "kernel/kernapi/api/acis_options.hxx"
|
|
|
Description:
|
This API determines the relationship between a point and an entity. Typically, the relationship indicates whether the given point lies on, inside, or outside of the given entity.
|
|
|
Errors:
|
Pointer to point is
NULL or not to an
APOINT.
|
|
Pointer to entity is
NULL.
|
|
|
Library:
|
intersct
|
|
|
Filename:
|
intr/intersct/kernapi/api/intrapi.hxx
|
|
|
Effect:
|
Read only
|