Reptillian Posted November 3, 2019 Share Posted November 3, 2019 (edited) Ah, posted in the right place this time. Now, on to the title, I would like for someone to explain what ? means in the function. g.DrawImage(?1,?2,?3,?4); I wouldn't be confused if the source of SphereCuber contains what looks like what below, but considering the coordinate seem to be same for ? series in some cases in TR's SphereCuber. I am confused. g.DrawImage(0,0,500,512); Edited November 3, 2019 by Reptillian Quote G'MIC Filter Developer Link to comment Share on other sites More sharing options...
toe_head2001 Posted November 3, 2019 Share Posted November 3, 2019 There's no DrawImage method that only takes ints. One of the parameters needs to be an image. Closest one would be: DrawImage(Image image, int x, int y, int width, int height) 1 Quote My Gallery | My Plugin Pack Layman's Guide to CodeLab Link to comment Share on other sites More sharing options...
Reptillian Posted November 3, 2019 Author Share Posted November 3, 2019 The last 4 variable is what I was looking for. Now, it makes sense. Thank you. Quote G'MIC Filter Developer Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.