FUNCTION valid_geometrically_bounded_wf_point

(* SCHEMA integrated_cnc_schema; *)
FUNCTION valid_geometrically_bounded_wf_point (
    pnt : point 
    ) : BOOLEAN;
    IF 'INTEGRATED_CNC_SCHEMA.CARTESIAN_POINT' IN TYPEOF(pnt) THEN
      RETURN (TRUE);
    ELSE
      IF 'INTEGRATED_CNC_SCHEMA.POINT_ON_CURVE' IN TYPEOF(pnt) THEN
        RETURN (valid_geometrically_bounded_wf_curve(pnt\point_on_curve.
          basis_curve));
      ELSE
        IF 'INTEGRATED_CNC_SCHEMA.POINT_REPLICA' IN TYPEOF(pnt) THEN
          RETURN (valid_geometrically_bounded_wf_point(pnt\point_replica.
            parent_pt));
        END_IF;
      END_IF;
    END_IF;
    RETURN (FALSE);
END_FUNCTION; -- 10303-510: aic_geometrically_bounded_wireframe

Referenced By

Defintion valid_geometrically_bounded_wf_point is references by the following definitions:
DefinitionType
 geometrically_bounded_wireframe_shape_representation ENTITY


[Top Level Definitions]

Generated by STEP ToolsTM EXPRESS to HTML Converter
on 2010-01-12T10:42:26-02:00