Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for gradYellow (0.37 sec)

  1. src/image/draw/draw_test.go

    	m := image.NewRGBA(image.Rect(0, 0, 16, 16))
    	for y := 0; y < 16; y++ {
    		for x := 0; x < 16; x++ {
    			m.Set(x, y, color.RGBA{uint8(x * alpha / 15), 0, 0, uint8(alpha)})
    		}
    	}
    	return m
    }
    
    func gradYellow(alpha int) Image {
    	m := image.NewRGBA(image.Rect(0, 0, 16, 16))
    	for y := 0; y < 16; y++ {
    		for x := 0; x < 16; x++ {
    			m.Set(x, y, color.RGBA{uint8(x * alpha / 15), uint8(y * alpha / 15), 0, uint8(alpha)})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top