Created
August 7, 2021 06:11
-
-
Save sachith-1/9ae0e7c950aaf60318352182df0c2050 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dim3 Dg; | |
Dg.x = 2; | |
Dg.y = 2; | |
Dg.z = 1; | |
// also can be written as | |
// Dg(2,2,1); | |
dim3 Db(2,4,2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment