Merge pull request #131 from poedator/patch-1
fix deprecated type definition.
This commit is contained in:
@@ -248,10 +248,10 @@ Create a custom dtype that describes a color as four unsigned bytes (RGBA) (★
|
|||||||
hint: np.dtype
|
hint: np.dtype
|
||||||
|
|
||||||
< a23
|
< a23
|
||||||
color = np.dtype([("r", np.ubyte, 1),
|
color = np.dtype([("r", np.ubyte),
|
||||||
("g", np.ubyte, 1),
|
("g", np.ubyte),
|
||||||
("b", np.ubyte, 1),
|
("b", np.ubyte),
|
||||||
("a", np.ubyte, 1)])
|
("a", np.ubyte)])
|
||||||
|
|
||||||
< q24
|
< q24
|
||||||
Multiply a 5x3 matrix by a 3x2 matrix (real matrix product) (★☆☆)
|
Multiply a 5x3 matrix by a 3x2 matrix (real matrix product) (★☆☆)
|
||||||
|
|||||||
Reference in New Issue
Block a user