Difference between revisions of "Vector Graphics - Yr 2 Only"
(→Revision Questions) |
(→Overview) |
||
(17 intermediate revisions by 4 users not shown) | |||
Line 5: | Line 5: | ||
https://www.youtube.com/watch?v=dSNO6ToqRQE&list=PLCiOXwirraUBIKvhutnNnMkVTpQ_psPN2 | https://www.youtube.com/watch?v=dSNO6ToqRQE&list=PLCiOXwirraUBIKvhutnNnMkVTpQ_psPN2 | ||
− | |||
− | |||
==Definition== | ==Definition== | ||
Line 25: | Line 23: | ||
==Vector Data Structure== | ==Vector Data Structure== | ||
− | A vector is one of the abstract data structures covered in year 2 (link to page: [[Vectors]] ). | + | A vector is one of the abstract data structures covered in year 2, this links to vector graphics because each vector can be a point, or even a line from given point. We can therefore use these to represent the shapes within an image, we can also mathematically scale and also calculate the magnitude (or distance) (link to page: [[Vectors]] ). |
=Revision Questions= | =Revision Questions= | ||
− | |||
− | |||
− | |||
<quiz> | <quiz> | ||
{What are vector graphics? | {What are vector graphics? | ||
− | + | |type="()" } | |
− | + | ||
− | + | + Vector graphics are computer graphics images that are defined in terms of 2D points. | |
− | + | ||correct | |
− | + | - A series of connecting lines that form a shape(s). | |
− | + | ||incorrect do more revision | |
− | + | - Video editing software. | |
− | + | ||incorrect do more revision | |
− | + | - A way of representing the resolution of an image. | |
+ | ||incorrect do more revision | ||
+ | {what are drawing lists? | ||
+ | |type="()" } | ||
+ | - a list of drawings | ||
+ | || get pranked kiddo | ||
+ | - The list of images that the vector graphics have to create. | ||
+ | ||incorrect do more revision | ||
+ | + The list of information needed to create the image accurately using vector graphics. | ||
+ | ||correct | ||
+ | - The less accurate predecessor of vector graphics. | ||
+ | ||incorrect do more revision | ||
+ | {What are the benefits of using Vector Graphics? | ||
+ | |type="()" } | ||
+ | - They are more detailed | ||
+ | || nah cuz dat straight wrong fam ygm | ||
+ | + they don't use code for each individual pixel | ||
+ | ||correct | ||
+ | - They use code for each pixel on the screen | ||
+ | ||nah thats bitmap g u wrong | ||
+ | - They are not as detailed | ||
+ | ||incorrect do more revision | ||
+ | {What are Vectors normally used for? | ||
+ | |type="()" } | ||
− | + | - taking pictures | |
+ | || get pranked kiddo | ||
+ | - Stealing Gru's miniature moon | ||
+ | ||incorrect do more revision | ||
+ | + logos | ||
+ | ||correct | ||
+ | - Capturing sound | ||
+ | ||incorrect do more revision | ||
+ | {True or False - Vector graphics are always easier to create in comparison to bitmap graphics | ||
+ | |type="()" } | ||
− | + | +False | |
− | + | ||ye | |
− | + | -true | |
+ | ||nah | ||
+ | </quiz> |
Latest revision as of 07:47, 23 August 2023
Contents
Overview
https://www.youtube.com/watch?v=dSNO6ToqRQE&list=PLCiOXwirraUBIKvhutnNnMkVTpQ_psPN2
Definition
Images created by using vector points, lines, and shapes.
These can be assigned a colour for the Stroke (outline) and the Fill (inside).
A vector can be scaled mathematically so no image quality is lost.
Details required for each shape
Drawing List
Compared with BitMap
Bitmaps are stored pixel by pixel However, in a vector graphic the image is stored by calculating the points, lines and shapes used to create the image. A drawing list is created to recreate the image. Vector graphics can be resized using mathematics so increasing the size has no effect on quality of the image.
The file size of a vector graphic can be significantly smaller than a bitmap. the drawing list is essentially the instructions to rebuild the image. However if you attempted to capture a real world photograph, you would essentially have so many shapes to represent the changes in colour that the file size might not be any smaller.
Vector Data Structure
A vector is one of the abstract data structures covered in year 2, this links to vector graphics because each vector can be a point, or even a line from given point. We can therefore use these to represent the shapes within an image, we can also mathematically scale and also calculate the magnitude (or distance) (link to page: Vectors ).