This document describes the API changes for 1.6.2.

TransLisp

  • (sysFindObjectAtPos source criteria pos) -> returns all objects that match the criteria and that are at the given position (using hit test).
  • (sysFindObjectAtPos source criteria start end) -> returns all objects that match the criteria and that intersect the line from start to end (using hit scan algorithm).
  • (sysHitScan source start end) -> tests for the first object that we hit by scanning from start to end. If we find an object, we return an array of two elements: (object hitPosition). If we do not find an object, we return Nil.