2 instantiations of FixedSOMLineRanges
PresentationFramework (2)
System\Windows\Documents\FixedSOMLineCollection.cs (2)
83range = new FixedSOMLineRanges 99range = new FixedSOMLineRanges
13 references to FixedSOMLineRanges
PresentationFramework (13)
System\Windows\Documents\FixedSOMLineCollection.cs (10)
28_verticals = new List<FixedSOMLineRanges>(); 29_horizontals = new List<FixedSOMLineRanges>(); 67private void _AddLineToRanges(List<FixedSOMLineRanges> ranges, double line, double start, double end) 76FixedSOMLineRanges range; 77double maxSeparation = .5 * FixedSOMLineRanges.MinLineSeparation; 110private bool _IsSeparated(List<FixedSOMLineRanges> lines, double parallelLowEnd, double perpLowEnd, double parallelHighEnd, double perpHighEnd) 168public List<FixedSOMLineRanges> HorizontalLines 176public List<FixedSOMLineRanges> VerticalLines 192private List<FixedSOMLineRanges> _horizontals; 193private List<FixedSOMLineRanges> _verticals;
System\Windows\Documents\FixedSOMPageConstructor.cs (3)
750double minLineSeparation = FixedSOMLineRanges.MinLineSeparation; 752List<FixedSOMLineRanges> horizontal = _lines.HorizontalLines; 753List<FixedSOMLineRanges> vertical = _lines.VerticalLines;