Selaa lähdekoodia

Fix comment tabs

disintegration 12 vuotta sitten
vanhempi
commit
9f5c870965
1 muutettua tiedostoa jossa 13 lisäystä ja 13 poistoa
  1. 13 13
      filters.go

+ 13 - 13
filters.go

@@ -9,29 +9,29 @@ import (
 // Supported resample filters: NearestNeighbor, Box, Linear, Hermite, MitchellNetravali,
 // CatmullRom, BSpline, Gaussian, Lanczos, Hann, Hamming, Blackman, Bartlett, Welch, Cosine.
 //
-// 	General filter recommendations:
+//	General filter recommendations:
 //
-// 	- Lanczos
-// 		Probably the best resampling filter for photographic images yielding sharp results, 
-//  	but it's slower than cubic filters (see below).
+//	- Lanczos
+//		Probably the best resampling filter for photographic images yielding sharp results, 
+//		but it's slower than cubic filters (see below).
 //	
-// 	- CatmullRom
-// 		A sharp cubic filter. It's a good filter for both upscaling and downscaling if sharp results are needed.
+//	- CatmullRom
+//		A sharp cubic filter. It's a good filter for both upscaling and downscaling if sharp results are needed.
 //	
-// 	- MitchellNetravali 
-// 		A high quality cubic filter that produces smoother results with less ringing than CatmullRom.
+//	- MitchellNetravali 
+//		A high quality cubic filter that produces smoother results with less ringing than CatmullRom.
 //	
-// 	- BSpline
-// 		A good filter if a very smooth output is needed.
+//	- BSpline
+//		A good filter if a very smooth output is needed.
 //	
-//  - Linear
+//	- Linear
 //		Bilinear interpolation filter, produces reasonably good, smooth output. It's faster than cubic filters.
 //
-//  - Box
+//	- Box
 //		Simple and fast resampling filter appropriate for downscaling.
 //		When upscaling it's similar to NearestNeighbor.
 //
-//  - NearestNeighbor
+//	- NearestNeighbor
 //		Fastest resample filter, no antialiasing at all. Rarely used.
 //
 type ResampleFilter struct {