FUNCTION build_2axes

(* SCHEMA associative_draughting; *)
  FUNCTION build_2axes(
               ref_direction: direction
      ): LIST [2:2] OF direction;
    LOCAL
      u : LIST [2:2] OF direction;
    END_LOCAL;
    u[1] := NVL(normalise(ref_direction),direction([1,0]));
    u[2] := orthogonal_complement(u[1]);
    RETURN(u);

  END_FUNCTION; -- build_2axes

Referenced By

Defintion build_2axes is references by the following definitions:
DefinitionType
 axis2_placement_2d ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:14:12-04:00