I need some pictures for my site like this;
https://farm9.staticflickr.com/8014/7490668848_a800ec5337_b.jpg
https://farm8.staticflickr.com/7270/7769969514_acd8dcf948_b.jpg
How can I draw pictures like this? I need help very much
Related
I have the basics of AE but I don't know everything, I would like to make an animation like the one in the link, with phone, if someone can tell me where to find such tutorial then that would be great. The animation of the phone is my main problem, it looks like a 3d model in sketch style. https://www.planradar.com/wp-content/uploads/2019/05/iPad_EN-1.mp4
First of all you need vector paths for drawing the tablet/phone it the style you have shown. (like in this video https://youtu.be/zSlXOIsfjLY?t=123)
Next you just need to put that all in 3D via camera settings and each layer as an 3D object and work this out step by step.
I think you should find many examples on youtube for what you are looking for.
I have an MFC application to draw graph using DirectX. Now I have to add the feature to draw the area graph in DirectX.
Now my application draws like this..
I want to include the feature to my graph to look like this..
here I have to fill the graph area with some color.
I have tried DrawPrimitive(). but this could be used to draw the Triangle, rectangle. but in my application I would like to draw graph with random data points.
Is it possible to achieve in DirectX..?
Kindly someone provide your suggestions.
If u need 2d graph's alone Direct2D is a great option,But if you insist on going to 3D for greater animation and illustrative purposes you can uses OpenGL.There are plenty of custom controls for graph illustration purposes based on OpenGL.
For eg:
http://www.codeproject.com/Articles/4346/D-Graph-ActiveX-Control
Opengl has greater flexibility and can serve your needs better since it is of open source.
hope this helps and Good Luck
I'm setting a Frustum camera to create a Virtual Reality environment that looks like a window when you look at the screen. I've checked all the documentation of the SoCamera, SoFrustumCamera, SoPerspectiveCamera and SoOrtographicCamera, but culdn't find a way to set my scene in order to match its borders with the borders of the screen.
I want to do something like this...
https://www.youtube.com/watch?v=Jd3-eiid-Uw
The problem on my code is that the whole scene moves, instead of only the "back" of the scene.
It looks 3D, but doesn't look as immersive as a real window.
Does anyone have a hint or can help me on that? Im making my code in C++, using OpenInventor.
Thanks!!
I think you might need an off-center perspective camera in order to do perspective shifts like in the youtube clip. Take a look at DirectXMath XMMatrixPerspectiveOffCenterLH() function. Maybe that'd help.
I have someone that draws everything for me. He is actually drawing it and not using any program... it turns out all right but I have a problem. It looks just like someone drew it and not "real" or "high level of drawing".
Anyways, I want to take the sprite that he made and make it look "lifelike". For example look at the game "sprinkle" (link below), the character in there looks not drawn, I mean like it looks like its 3d but not 3d. I hope that you understand me..
Thanks!
(https://market.android.com/details?id=com.mediocre.sprinkle&feature=banner#?t=W251bGwsMSwyLDIwMSwiY29tLm1lZGlvY3JlLnNwcmlua2xlIl0.)
The scenarios and assets of that game are pretty impressive.
The options you do have:
Model 3D and render as 2D (3dStudioMax and Blender are recommended for games);
Scan draws, stroke with digital tool (Photoshop, Gimp) and use painter skill to it looks like vivid as you want.
I am fairly new to openGL. I have a 3d game that I have running, and it seems to go fairly well. What I would like to do is display an image straight onto the screen, and I am not sure the easiest way to do that. My only idea is to draw a rectangle right in front of the screen and use the image as the texture. It seems like there should be an easier way.
This is for menu screens, and things, so if there is a better way to do that as well, please let me know.
I would recommend setting up OpenGL for 2D rendering via gluOrtho2d(); then, load the image into a texture and, as you said, draw it to the screen by creating a polygon and binding the texture to it. A good example can be found here.
You've got the basic idea. The other obvious alternative is to use glDrawPixels() but I think you'll find the texture method has much better performance. If you're feeling frisky, you might also take a look at Pixel Buffer Objects.
Good luck!