2 instantiations of FixedSOMLineRanges
PresentationFramework (2)
System\Windows\Documents\FixedSOMLineCollection.cs (2)
84range = new FixedSOMLineRanges 100range = new FixedSOMLineRanges
13 references to FixedSOMLineRanges
PresentationFramework (13)
System\Windows\Documents\FixedSOMLineCollection.cs (10)
29_verticals = new List<FixedSOMLineRanges>(); 30_horizontals = new List<FixedSOMLineRanges>(); 68private void _AddLineToRanges(List<FixedSOMLineRanges> ranges, double line, double start, double end) 77FixedSOMLineRanges range; 78double maxSeparation = .5 * FixedSOMLineRanges.MinLineSeparation; 111private bool _IsSeparated(List<FixedSOMLineRanges> lines, double parallelLowEnd, double perpLowEnd, double parallelHighEnd, double perpHighEnd) 169public List<FixedSOMLineRanges> HorizontalLines 177public List<FixedSOMLineRanges> VerticalLines 193private List<FixedSOMLineRanges> _horizontals; 194private List<FixedSOMLineRanges> _verticals;
System\Windows\Documents\FixedSOMPageConstructor.cs (3)
751double minLineSeparation = FixedSOMLineRanges.MinLineSeparation; 753List<FixedSOMLineRanges> horizontal = _lines.HorizontalLines; 754List<FixedSOMLineRanges> vertical = _lines.VerticalLines;