~ubuntu-branches/ubuntu/precise/pcb/precise

« back to all changes in this revision

Viewing changes to src/find.h

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2005-02-20 13:14:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050220131400-pfz66g5vhx0azl8f
Tags: 1.99j+20050127-2
* Improved package description: (closes: #295405)
* Fixed dependency: tk84 -> tk8.4 (closes: #295404)
* Updated README.debian (closes: #269578)
* Applied patch to src/djopt.c to allow compilation with gcc-4.0
  (closes: #294319), thanks to Andreas Jochens for the patch.
* Prevent example files from being compressed

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 *  Thomas Nau, Schlehenweg 15, 88471 Baustetten, Germany
23
23
 *  Thomas.Nau@rz.uni-ulm.de
24
24
 *
25
 
 *  RCS: $Id: find.h,v 1.1 1998/02/19 18:06:34 sync Exp $
 
25
 *  RCS: $Id: find.h,v 1.8 2005/01/03 12:56:59 danmc Exp $
26
26
 */
27
27
 
28
28
/* prototypes connection search routines
46
46
 
47
47
Boolean LineLineIntersect(LineTypePtr, LineTypePtr);
48
48
Boolean LineArcIntersect(LineTypePtr, ArcTypePtr);
 
49
Boolean PinLineIntersect(PinTypePtr, LineTypePtr);
 
50
Boolean LinePadIntersect(LineTypePtr, PadTypePtr);
 
51
Boolean ArcPadIntersect(ArcTypePtr, PadTypePtr);
49
52
Boolean IsPolygonInPolygon(PolygonTypePtr, PolygonTypePtr);
50
53
void    LookupElementConnections(ElementTypePtr, FILE *);
51
54
void    LookupConnectionsToAllElements(FILE *);
52
 
void    LookupConnection(Position, Position, Boolean, Dimension);
 
55
void    LookupConnection(LocationType, LocationType, Boolean, BDimension);
53
56
void    LookupUnusedPins(FILE *);
54
57
void    ResetFoundLinesAndPolygons(Boolean);
55
58
void    ResetFoundPinsViasAndPads(Boolean);
56
59
void    InitConnectionLookup(void);
 
60
void    InitComponentLookup(void);
 
61
void    InitLayoutLookup(void);
57
62
void    FreeConnectionLookupMemory(void);
58
 
void    RatFindHook(int, void *, void *, void *, Boolean);
 
63
void    FreeComponentLookupMemory(void);
 
64
void    FreeLayoutLookupMemory(void);
 
65
void    RatFindHook(int, void *, void *, void *, Boolean, Boolean);
59
66
void    SaveFindFlag(int);
60
67
void    RestoreFindFlag(void);
61
 
Boolean DRCAll(void);
 
68
Cardinal DRCAll(void);
 
69
Boolean lineClear(LineTypePtr, Cardinal);
 
70
Boolean IsLineInPolygon(LineTypePtr, PolygonTypePtr);
 
71
Boolean IsArcInPolygon(ArcTypePtr, PolygonTypePtr);
 
72
Boolean IsPadInPolygon(PadTypePtr, PolygonTypePtr);
62
73
 
63
74
#endif