SlideShare a Scribd company logo
Gl_point
Two points:
#include<GL/glut.h>
void display()
{
glClear(GL_COLOR_BUFFER_BIT);
glClearColor(0.0f,0.0f,0.0f,0.0f);
glPointSize(10.0f);
glBegin(GL_POINTS);
glColor3f(1.0,1.0,0.0);
glVertex2f(0.0f,0.0f);
glVertex2f(0.2f,0.5f);
glEnd();
glFlush();
}
void main(intargc,char**argv)
{
glutInit(&argc,argv);
glutInitWindowSize(420,320);
glutInitWindowPosition(50,50);
glutCreateWindow("GL_POINTS Example");
glutDisplayFunc(display);
glutMainLoop();
}
Four Points:
#include<GL/glut.h>
void display()
{
glClear(GL_COLOR_BUFFER_BIT);
glClearColor(0.0f,0.0f,0.0f,0.0f);
glPointSize(10.0f);
glPointSize(30.0f);
glBegin(GL_POINTS);
glColor3f(1.0,0.0,0.0);
glVertex2f(0.0f,0.2f);
glColor3f(1.0,0.0,1.0);
glVertex2f(0.0f,0.5f);
glPointSize(60.0f);
glBegin(GL_POINTS);
glColor3f(0.0,1.0,0.0);
glVertex2f(0.5f,0.2f);
glColor3f(0.0,0.0,1.0);
glVertex2f(0.5f,0.5f);
glEnd();
glFlush();
}
void main(intargc,char**argv)
{
glutInit(&argc,argv);
glutInitWindowSize(420,320);
glutInitWindowPosition(50,50);
glutCreateWindow("GL_POINTS Example");
glutDisplayFunc(display);
glutMainLoop();
}
GL_LINES

#include<GL/glut.h>
void display(){
glClear(GL_COLOR_BUFFER_BIT);
glClearColor(0.0f,0.0f,0.0f,0.0f);
glPointSize(100.0f);
glBegin(GL_LINES);
glColor3f(1.0,0.0,0.0);
glVertex2f(0.0f,0.0f);
glVertex2f(0.7f,0.5f);
glPointSize(100.0f);
glBegin(GL_LINES);
glColor3f(0.0,1.0,0.0);
glVertex2f(-0.2f,0.0f);
glVertex2f(-0.7f,0.5f);
glEnd();
glFlush();
}
void main(intargc,char**argv){
glutInit(&argc,argv);
glutInitWindowSize(420,320);
glutInitWindowPosition(50,50);
glutCreateWindow("GL_LINES Example");
glutDisplayFunc(display);
glutMainLoop();
}
#include<GL/glut.h>
void display(){
glClear(GL_COLOR_BUFFER_BIT);
glClearColor(0.0f,0.0f,0.0f,0.0f);
glPointSize(100.0f);
glBegin(GL_LINES);
glColor3f(1.0,0.0,0.0);
glVertex2f(0.5f,0.5f);
glVertex2f(-0.5f,0.5f);
glPointSize(100.0f);
glBegin(GL_LINES);
glColor3f(0.0,0.0,1.0);
glVertex2f(-0.5f,0.5f);
glVertex2f(0.5f,-0.5f);
glPointSize(100.0f);
glBegin(GL_LINES);
glColor3f(1.0,1.0,1.0);
glVertex2f(0.5f,-0.5f);
glVertex2f(-0.5f,-0.5f);
glPointSize(100.0f);
glBegin(GL_LINES);
glColor3f(1.0,0.0,1.0);
glVertex2f(-0.5f,-0.5f);
glVertex2f(0.5f,0.5f);

glEnd();
glFlush();
}
void main(intargc,char**argv){
glutInit(&argc,argv);
glutInitWindowSize(420,320);
glutInitWindowPosition(50,50);
glutCreateWindow("GL_LINES Example");
glutDisplayFunc(display);
glutMainLoop();
}

More Related Content

What's hot

C & Python Introduction
C & Python IntroductionC & Python Introduction
C & Python Introduction
Spy Seat
 
Static and const members
Static and const membersStatic and const members
Static and const members
mohamed sikander
 
10 3 다중 배열
10 3 다중 배열10 3 다중 배열
10 3 다중 배열
Changwon National University
 
#2
#2#2
Computer Graphics and Multimedia lab report
Computer Graphics and Multimedia lab reportComputer Graphics and Multimedia lab report
Computer Graphics and Multimedia lab report
Bijoy679
 
C언어 스터디 강의자료 - 1차시
C언어 스터디 강의자료 - 1차시C언어 스터디 강의자료 - 1차시
C언어 스터디 강의자료 - 1차시
Junha Jang
 
Operator overloading
Operator overloadingOperator overloading
Operator overloading
mohamed sikander
 
basic programs in C++
basic programs in C++ basic programs in C++
basic programs in C++ Arun Nair
 
Understanding storage class using nm
Understanding storage class using nmUnderstanding storage class using nm
Understanding storage class using nm
mohamed sikander
 
Student Data Base Using C/C++ Final Project
Student Data Base Using C/C++ Final ProjectStudent Data Base Using C/C++ Final Project
Student Data Base Using C/C++ Final Project
Haqnawaz Ch
 
Stl algorithm-Basic types
Stl algorithm-Basic typesStl algorithm-Basic types
Stl algorithm-Basic types
mohamed sikander
 
Assignement c++
Assignement c++Assignement c++
Assignement c++
Syed Umair
 
Assignement of c++
Assignement of c++Assignement of c++
Assignement of c++
Syed Umair
 
Implementing string
Implementing stringImplementing string
Implementing string
mohamed sikander
 
Blocks+gcd入門
Blocks+gcd入門Blocks+gcd入門
Blocks+gcd入門
領一 和泉田
 
Programa en C++ ( escriba 3 números y diga cual es el mayor))
Programa en C++ ( escriba 3 números y diga cual es el mayor))Programa en C++ ( escriba 3 números y diga cual es el mayor))
Programa en C++ ( escriba 3 números y diga cual es el mayor))Alex Penso Romero
 
Code for program to draw a circle using mid point circle algorithm in c
Code for program to draw a circle using mid point circle algorithm in cCode for program to draw a circle using mid point circle algorithm in c
Code for program to draw a circle using mid point circle algorithm in c
Ossa2015
 

What's hot (20)

C & Python Introduction
C & Python IntroductionC & Python Introduction
C & Python Introduction
 
C++ programs
C++ programsC++ programs
C++ programs
 
Static and const members
Static and const membersStatic and const members
Static and const members
 
Vcs15
Vcs15Vcs15
Vcs15
 
135
135135
135
 
10 3 다중 배열
10 3 다중 배열10 3 다중 배열
10 3 다중 배열
 
#2
#2#2
#2
 
Computer Graphics and Multimedia lab report
Computer Graphics and Multimedia lab reportComputer Graphics and Multimedia lab report
Computer Graphics and Multimedia lab report
 
C언어 스터디 강의자료 - 1차시
C언어 스터디 강의자료 - 1차시C언어 스터디 강의자료 - 1차시
C언어 스터디 강의자료 - 1차시
 
Operator overloading
Operator overloadingOperator overloading
Operator overloading
 
basic programs in C++
basic programs in C++ basic programs in C++
basic programs in C++
 
Understanding storage class using nm
Understanding storage class using nmUnderstanding storage class using nm
Understanding storage class using nm
 
Student Data Base Using C/C++ Final Project
Student Data Base Using C/C++ Final ProjectStudent Data Base Using C/C++ Final Project
Student Data Base Using C/C++ Final Project
 
Stl algorithm-Basic types
Stl algorithm-Basic typesStl algorithm-Basic types
Stl algorithm-Basic types
 
Assignement c++
Assignement c++Assignement c++
Assignement c++
 
Assignement of c++
Assignement of c++Assignement of c++
Assignement of c++
 
Implementing string
Implementing stringImplementing string
Implementing string
 
Blocks+gcd入門
Blocks+gcd入門Blocks+gcd入門
Blocks+gcd入門
 
Programa en C++ ( escriba 3 números y diga cual es el mayor))
Programa en C++ ( escriba 3 números y diga cual es el mayor))Programa en C++ ( escriba 3 números y diga cual es el mayor))
Programa en C++ ( escriba 3 números y diga cual es el mayor))
 
Code for program to draw a circle using mid point circle algorithm in c
Code for program to draw a circle using mid point circle algorithm in cCode for program to draw a circle using mid point circle algorithm in c
Code for program to draw a circle using mid point circle algorithm in c
 

Viewers also liked

Zirutama
ZirutamaZirutama
Zirutama
ianbox15
 
Isolieren statt dämmen 13
Isolieren statt dämmen 13Isolieren statt dämmen 13
Isolieren statt dämmen 13
Burkhard Kraus
 
Herramientas 2.0
Herramientas  2.0Herramientas  2.0
Herramientas 2.0
Marcela Camargo
 
Dipositivas del proyecto productivo(Alyssum)
Dipositivas del proyecto productivo(Alyssum)Dipositivas del proyecto productivo(Alyssum)
Dipositivas del proyecto productivo(Alyssum)
Carlos Mario Calderón Rodríguez
 
Autobiografía [magali berenice]
Autobiografía [magali berenice]Autobiografía [magali berenice]
Autobiografía [magali berenice]Mary Salazar
 
Catálogo Navidad COFERDROZA - invierno 2012
Catálogo Navidad COFERDROZA -  invierno 2012Catálogo Navidad COFERDROZA -  invierno 2012
Catálogo Navidad COFERDROZA - invierno 2012Suministros Herco
 
Airconcrete S.A de C.V
Airconcrete S.A de C.VAirconcrete S.A de C.V
La panza es primero
La panza es primeroLa panza es primero
La panza es primero
Angel Rodriguez S
 
SM UNY ipa 2012
SM UNY ipa 2012SM UNY ipa 2012
SM UNY ipa 2012
Syifa Ghifari
 
Tema10 aaee
Tema10   aaeeTema10   aaee
Padre pio para los amigos
Padre pio para los amigosPadre pio para los amigos
Padre pio para los amigos
Sebastian Narvaez
 
Amigos Socorro 1977 5to Nac
Amigos Socorro 1977 5to NacAmigos Socorro 1977 5to Nac
Amigos Socorro 1977 5to Nac
hectorquilmes
 
Sílabo de Antropología Social del Perú Escuela de Tecnología Médica Radiologia
Sílabo de Antropología Social del Perú Escuela de Tecnología Médica RadiologiaSílabo de Antropología Social del Perú Escuela de Tecnología Médica Radiologia
Sílabo de Antropología Social del Perú Escuela de Tecnología Médica Radiologia
mayi3918
 
Euphrasia Homeopátia
Euphrasia HomeopátiaEuphrasia Homeopátia
Euphrasia HomeopátiaRulo Arguello
 
Os 4 alicerces do design um bom website
Os 4 alicerces do design um bom websiteOs 4 alicerces do design um bom website
Os 4 alicerces do design um bom website
Hamlet B2B
 
Artistas permanentes (miriam libhaber)
Artistas permanentes  (miriam libhaber)Artistas permanentes  (miriam libhaber)
Artistas permanentes (miriam libhaber)Atelier_et_galerie
 

Viewers also liked (20)

Zirutama
ZirutamaZirutama
Zirutama
 
Isolieren statt dämmen 13
Isolieren statt dämmen 13Isolieren statt dämmen 13
Isolieren statt dämmen 13
 
Tab viernes
Tab viernesTab viernes
Tab viernes
 
Herramientas 2.0
Herramientas  2.0Herramientas  2.0
Herramientas 2.0
 
Dipositivas del proyecto productivo(Alyssum)
Dipositivas del proyecto productivo(Alyssum)Dipositivas del proyecto productivo(Alyssum)
Dipositivas del proyecto productivo(Alyssum)
 
Autobiografía [magali berenice]
Autobiografía [magali berenice]Autobiografía [magali berenice]
Autobiografía [magali berenice]
 
Perro Fiel
Perro FielPerro Fiel
Perro Fiel
 
Catálogo Navidad COFERDROZA - invierno 2012
Catálogo Navidad COFERDROZA -  invierno 2012Catálogo Navidad COFERDROZA -  invierno 2012
Catálogo Navidad COFERDROZA - invierno 2012
 
Airconcrete S.A de C.V
Airconcrete S.A de C.VAirconcrete S.A de C.V
Airconcrete S.A de C.V
 
La panza es primero
La panza es primeroLa panza es primero
La panza es primero
 
SM UNY ipa 2012
SM UNY ipa 2012SM UNY ipa 2012
SM UNY ipa 2012
 
Tema10 aaee
Tema10   aaeeTema10   aaee
Tema10 aaee
 
Padre pio para los amigos
Padre pio para los amigosPadre pio para los amigos
Padre pio para los amigos
 
Amigos Socorro 1977 5to Nac
Amigos Socorro 1977 5to NacAmigos Socorro 1977 5to Nac
Amigos Socorro 1977 5to Nac
 
Violett1
Violett1Violett1
Violett1
 
Sílabo de Antropología Social del Perú Escuela de Tecnología Médica Radiologia
Sílabo de Antropología Social del Perú Escuela de Tecnología Médica RadiologiaSílabo de Antropología Social del Perú Escuela de Tecnología Médica Radiologia
Sílabo de Antropología Social del Perú Escuela de Tecnología Médica Radiologia
 
Euphrasia Homeopátia
Euphrasia HomeopátiaEuphrasia Homeopátia
Euphrasia Homeopátia
 
Os 4 alicerces do design um bom website
Os 4 alicerces do design um bom websiteOs 4 alicerces do design um bom website
Os 4 alicerces do design um bom website
 
Artistas permanentes (miriam libhaber)
Artistas permanentes  (miriam libhaber)Artistas permanentes  (miriam libhaber)
Artistas permanentes (miriam libhaber)
 
Sisik kadal dan ular
Sisik kadal dan ularSisik kadal dan ular
Sisik kadal dan ular
 

Similar to computer graphics at openGL (2)

Tutorial Open GL (Listing Code)
Tutorial Open GL (Listing Code)Tutorial Open GL (Listing Code)
Tutorial Open GL (Listing Code)
Aila Gema Safitri
 
Open gl polygon code review
Open gl polygon code reviewOpen gl polygon code review
Open gl polygon code review
SANURI KARUNARATHNA
 
Robot In OpenGL Using Line Function
Robot In OpenGL Using Line Function Robot In OpenGL Using Line Function
Robot In OpenGL Using Line Function
Jannat Jamshed
 
Robot In OpenGL Using Line Function
Robot In OpenGL Using Line Function Robot In OpenGL Using Line Function
Robot In OpenGL Using Line Function
Jannat Jamshed
 
opengl.ppt
opengl.pptopengl.ppt
opengl.ppt
Subiksha57
 
Intro to Computer Graphics.ppt
Intro to Computer Graphics.pptIntro to Computer Graphics.ppt
Intro to Computer Graphics.ppt
adil104135
 
01.Opengl_intro-2.ppt
01.Opengl_intro-2.ppt01.Opengl_intro-2.ppt
01.Opengl_intro-2.ppt
EngrZamaan
 
Programa de objetos 3 d wire
Programa de objetos 3 d wirePrograma de objetos 3 d wire
Programa de objetos 3 d wireRené Domínguez
 
FLTK Summer Course - Part VIII - Eighth Impact - Exercises
FLTK Summer Course - Part VIII - Eighth Impact - ExercisesFLTK Summer Course - Part VIII - Eighth Impact - Exercises
FLTK Summer Course - Part VIII - Eighth Impact - Exercises
Michel Alves
 
Komputer Grafik
Komputer GrafikKomputer Grafik
Komputer Grafik
MuhammadAli2239
 
2D Drawing
2D Drawing2D Drawing
2D Drawing
Budditha Hettige
 
Robot by gulnaz
Robot by gulnazRobot by gulnaz
Robot by gulnaz
Gulnaz Akhter
 
Robot by gulnaz
Robot by gulnazRobot by gulnaz
Robot by gulnaz
Gulnaz Akhter
 
Laporan modul2
Laporan modul2Laporan modul2
Laporan modul2
Rajaly Hartanta
 
Ass day2 1_checkerboard...copy in cpp
Ass day2 1_checkerboard...copy in cppAss day2 1_checkerboard...copy in cpp
Ass day2 1_checkerboard...copy in cpp
Robi Parvez
 
Ass day3 1_bd flag
Ass day3 1_bd flagAss day3 1_bd flag
Ass day3 1_bd flagRobi Parvez
 
#includefloat angle, move, scene, roadmove,turn, on=1; int i, st.docx
#includefloat angle, move, scene, roadmove,turn, on=1; int i, st.docx#includefloat angle, move, scene, roadmove,turn, on=1; int i, st.docx
#includefloat angle, move, scene, roadmove,turn, on=1; int i, st.docx
ajoy21
 
Practicing 2d drawing primitives
Practicing 2d drawing primitivesPracticing 2d drawing primitives
Practicing 2d drawing primitives
Technology & Education
 
Manual
ManualManual
Manual
equipo3-303
 

Similar to computer graphics at openGL (2) (20)

Tutorial Open GL (Listing Code)
Tutorial Open GL (Listing Code)Tutorial Open GL (Listing Code)
Tutorial Open GL (Listing Code)
 
Open gl polygon code review
Open gl polygon code reviewOpen gl polygon code review
Open gl polygon code review
 
Robot In OpenGL Using Line Function
Robot In OpenGL Using Line Function Robot In OpenGL Using Line Function
Robot In OpenGL Using Line Function
 
Robot In OpenGL Using Line Function
Robot In OpenGL Using Line Function Robot In OpenGL Using Line Function
Robot In OpenGL Using Line Function
 
opengl.ppt
opengl.pptopengl.ppt
opengl.ppt
 
Intro to Computer Graphics.ppt
Intro to Computer Graphics.pptIntro to Computer Graphics.ppt
Intro to Computer Graphics.ppt
 
01.Opengl_intro-2.ppt
01.Opengl_intro-2.ppt01.Opengl_intro-2.ppt
01.Opengl_intro-2.ppt
 
Programa de objetos 3 d wire
Programa de objetos 3 d wirePrograma de objetos 3 d wire
Programa de objetos 3 d wire
 
Practica
PracticaPractica
Practica
 
FLTK Summer Course - Part VIII - Eighth Impact - Exercises
FLTK Summer Course - Part VIII - Eighth Impact - ExercisesFLTK Summer Course - Part VIII - Eighth Impact - Exercises
FLTK Summer Course - Part VIII - Eighth Impact - Exercises
 
Komputer Grafik
Komputer GrafikKomputer Grafik
Komputer Grafik
 
2D Drawing
2D Drawing2D Drawing
2D Drawing
 
Robot by gulnaz
Robot by gulnazRobot by gulnaz
Robot by gulnaz
 
Robot by gulnaz
Robot by gulnazRobot by gulnaz
Robot by gulnaz
 
Laporan modul2
Laporan modul2Laporan modul2
Laporan modul2
 
Ass day2 1_checkerboard...copy in cpp
Ass day2 1_checkerboard...copy in cppAss day2 1_checkerboard...copy in cpp
Ass day2 1_checkerboard...copy in cpp
 
Ass day3 1_bd flag
Ass day3 1_bd flagAss day3 1_bd flag
Ass day3 1_bd flag
 
#includefloat angle, move, scene, roadmove,turn, on=1; int i, st.docx
#includefloat angle, move, scene, roadmove,turn, on=1; int i, st.docx#includefloat angle, move, scene, roadmove,turn, on=1; int i, st.docx
#includefloat angle, move, scene, roadmove,turn, on=1; int i, st.docx
 
Practicing 2d drawing primitives
Practicing 2d drawing primitivesPracticing 2d drawing primitives
Practicing 2d drawing primitives
 
Manual
ManualManual
Manual
 

More from Yasir Khan

Lecture 6
Lecture 6Lecture 6
Lecture 6
Yasir Khan
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
Yasir Khan
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
Yasir Khan
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
Yasir Khan
 
Lec#1
Lec#1Lec#1
Lec#1
Yasir Khan
 
Ch10 (1)
Ch10 (1)Ch10 (1)
Ch10 (1)
Yasir Khan
 
Ch09
Ch09Ch09
Ch05
Ch05Ch05
Snooping protocols 3
Snooping protocols 3Snooping protocols 3
Snooping protocols 3
Yasir Khan
 
Snooping 2
Snooping 2Snooping 2
Snooping 2
Yasir Khan
 
Introduction 1
Introduction 1Introduction 1
Introduction 1
Yasir Khan
 
Hpc sys
Hpc sysHpc sys
Hpc sys
Yasir Khan
 
Hpc 6 7
Hpc 6 7Hpc 6 7
Hpc 6 7
Yasir Khan
 
Hpc 4 5
Hpc 4 5Hpc 4 5
Hpc 4 5
Yasir Khan
 
Hpc 3
Hpc 3Hpc 3
Hpc 3
Yasir Khan
 
Hpc 2
Hpc 2Hpc 2
Hpc 2
Yasir Khan
 
Hpc 1
Hpc 1Hpc 1
Hpc 1
Yasir Khan
 
Flynns classification
Flynns classificationFlynns classification
Flynns classification
Yasir Khan
 
Dir based imp_5
Dir based imp_5Dir based imp_5
Dir based imp_5
Yasir Khan
 
Natural Language Processing
Natural Language ProcessingNatural Language Processing
Natural Language ProcessingYasir Khan
 

More from Yasir Khan (20)

Lecture 6
Lecture 6Lecture 6
Lecture 6
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
 
Lec#1
Lec#1Lec#1
Lec#1
 
Ch10 (1)
Ch10 (1)Ch10 (1)
Ch10 (1)
 
Ch09
Ch09Ch09
Ch09
 
Ch05
Ch05Ch05
Ch05
 
Snooping protocols 3
Snooping protocols 3Snooping protocols 3
Snooping protocols 3
 
Snooping 2
Snooping 2Snooping 2
Snooping 2
 
Introduction 1
Introduction 1Introduction 1
Introduction 1
 
Hpc sys
Hpc sysHpc sys
Hpc sys
 
Hpc 6 7
Hpc 6 7Hpc 6 7
Hpc 6 7
 
Hpc 4 5
Hpc 4 5Hpc 4 5
Hpc 4 5
 
Hpc 3
Hpc 3Hpc 3
Hpc 3
 
Hpc 2
Hpc 2Hpc 2
Hpc 2
 
Hpc 1
Hpc 1Hpc 1
Hpc 1
 
Flynns classification
Flynns classificationFlynns classification
Flynns classification
 
Dir based imp_5
Dir based imp_5Dir based imp_5
Dir based imp_5
 
Natural Language Processing
Natural Language ProcessingNatural Language Processing
Natural Language Processing
 

Recently uploaded

The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
Vivekanand Anglo Vedic Academy
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
PedroFerreira53928
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
Celine George
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
Nguyen Thanh Tu Collection
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 

Recently uploaded (20)

The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 

computer graphics at openGL (2)