Spline.st
changeset 388 9f1c439ad66b
parent 374 a77f804c605e
child 490 ef43c7a69346
equal deleted inserted replaced
387:bcd98f85086f 388:9f1c439ad66b
   524         ] ifFalse:[
   524         ] ifFalse:[
   525             x > maxX ifTrue:[
   525             x > maxX ifTrue:[
   526                 maxX := x
   526                 maxX := x
   527             ]
   527             ]
   528         ].
   528         ].
   529         (y := p y rounded) < minX ifTrue:[
   529         (y := p y rounded) < minY ifTrue:[
   530             minY := y
   530             minY := y
   531         ] ifFalse:[
   531         ] ifFalse:[
   532             y > maxY ifTrue:[
   532             y > maxY ifTrue:[
   533                 maxY := y
   533                 maxY := y
   534             ]
   534             ]
   558 ! !
   558 ! !
   559 
   559 
   560 !Spline class methodsFor:'documentation'!
   560 !Spline class methodsFor:'documentation'!
   561 
   561 
   562 version
   562 version
   563     ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.11 1996-06-01 09:30:16 cg Exp $'
   563     ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.12 1996-06-05 11:54:34 cg Exp $'
   564 ! !
   564 ! !