2 instantiations of FixedSOMLineRanges
PresentationFramework (2)
System\Windows\Documents\FixedSOMLineCollection.cs (2)
90range = new FixedSOMLineRanges(); 104range = new FixedSOMLineRanges();
13 references to FixedSOMLineRanges
PresentationFramework (13)
System\Windows\Documents\FixedSOMLineCollection.cs (10)
35_verticals = new List<FixedSOMLineRanges>(); 36_horizontals = new List<FixedSOMLineRanges>(); 74private void _AddLineToRanges(List<FixedSOMLineRanges> ranges, double line, double start, double end) 83FixedSOMLineRanges range; 84double maxSeparation = .5 * FixedSOMLineRanges.MinLineSeparation; 113private bool _IsSeparated(List<FixedSOMLineRanges> lines, double parallelLowEnd, double perpLowEnd, double parallelHighEnd, double perpHighEnd) 171public List<FixedSOMLineRanges> HorizontalLines 179public List<FixedSOMLineRanges> VerticalLines 195private List<FixedSOMLineRanges> _horizontals; 196private List<FixedSOMLineRanges> _verticals;
System\Windows\Documents\FixedSOMPageConstructor.cs (3)
754double minLineSeparation = FixedSOMLineRanges.MinLineSeparation; 756List<FixedSOMLineRanges> horizontal = _lines.HorizontalLines; 757List<FixedSOMLineRanges> vertical = _lines.VerticalLines;