'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Narration

Narration is the use of—or the particularly chosen methodology or process (also called the narrative mode) of using—a written or spoken commentary to convey a story to an audience. Narration encompasses a set of techniques through which the creator of the story presents their story, including:

  • Narrative point of view: the perspective (or type of personal or non-personal "lens") through which a story is communicated
  • Narrative voice: the format (or type of presentational form) through which a story is communicated
  • Narrative time: the placement of the story's time-frame in the past, the present, or the future
  • A narrator is a personal character or a non-personal voice that the creator of the story develops to deliver information to the audience, particularly about the plot. The narrator may be a voice devised by the author as an anonymous, non-personal, or stand-alone entity; as the author herself/himself as a character; or as some other fictional or non-fictional character appearing and participating within their own story. The narrator is considered participant if he/she is a character within the story, and non-participant if he/she is an implied character or an omniscient or semi-omniscient being or voice that merely relates the story to the audience without being involved in the actual events. Some stories have multiple narrators to illustrate the storylines of various characters at the same, similar, or different times, thus allowing a more complex, non-singular point of view.

    Point of view

    Point of view or Points of View may refer to:

    Concept and technique

  • Point of view (philosophy), an attitude how one sees or thinks of something
  • Point of view (literature) or narrative mode, the perspective of the narrative voice; the pronoun used in narration
  • Point of view (painting), the angle of painter vision
  • Point of view shot, a technique in motion photography
  • Point of view pornography, as used in adult film
  • Organizations

  • Point of View, Inc., a video game developer
  • Point of View (computer hardware company), a producer of gaming graphics cards
  • Point of View Movie Production Co. Ltd., of Hong Kong filmmaker Dennis Law Sau-Yiu
  • Point of View (non-governmental organization), an organisation in India
  • Geography

  • Point of View Park, a parklet in Pittsburgh, Pennsylvania, US
  • Pointe of View Winery, a winery in North Dakota, US
  • Art

  • Points of View (Surls), 1991 sculpture by James Surls, in Houston, Texas, the United States
  • Point of View (sculpture), a 2006 public sculpture of George Washington and Guyasuta
  • Perspective (graphical)

    Perspective (from Latin: perspicere to see through) in the graphic arts is an approximate representation, on a flat surface (such as paper), of an image as it is seen by the eye. The two most characteristic features of perspective are that objects are smaller as their distance from the observer increases; and that they are subject to foreshortening, meaning that an object's dimensions along the line of sight are shorter than its dimensions across the line of sight.

    Italian Renaissance painters and architects including Filippo Brunelleschi, Masaccio, Paolo Uccello, Piero della Francesca and Luca Pacioli studied linear perspective, wrote treatises on it, and incorporated it into their artworks, thus contributing to the mathematics of art.

    Overview

    Linear perspective always works by representing the light that passes from a scene through an imaginary rectangle (realized as the plane of the painting), to the viewer's eye, as if a viewer were looking through a window and painting what is seen directly onto the windowpane. If viewed from the same spot as the windowpane was painted, the painted image would be identical to what was seen through the unpainted window. Each painted object in the scene is thus a flat, scaled down version of the object on the other side of the window. Because each portion of the painted object lies on the straight line from the viewer's eye to the equivalent portion of the real object it represents, the viewer sees no difference (sans depth perception) between the painted scene on the windowpane and the view of the real scene. All perspective drawings assume the viewer is a certain distance away from the drawing. Objects are scaled relative to that viewer. An object is often not scaled evenly: a circle often appears as an ellipse and a square can appear as a trapezoid. This distortion is referred to as foreshortening.

    Point of view (philosophy)

    In philosophy, a point of view is a specified or stated manner of consideration, an attitude how one sees or thinks of something, as in "from doctor's point of view". This figurative usage of the expression as attested since 1760. In this meaning, the usage is synonymous with one of the meanings of the term perspective.

    Analysis

    Margarita Vázquez Campos and Antonio Manuel Liz Gutiérrez in their work "The Notion of Point of View" give a comprehensive analysis of the structure of the concept. They point that despite being crucial in many discourses, the notion has not been adequately analyzed, although some important works do exist. They mention that early classical Greek philosophers, starting from Parmenides and Heraclitus discussed the relation between "appearance" and reality, i.e., how our points of view are connected with reality. They specifically point out Ludwig Wittgenstein's Tractatus Logico-Philosophicus. They consider Wittgenstein's theory of "pictures" or "models" (Wittgenstein used the German word Bild, which means both "picture" and "model") as an illustration of the relationship between points of view and reality.

    Podcasts:

    • สรุปสงครามโลกครั้งที่ 1 #คลิปเดียวจบ | Point of View

      คลิปที่เกี่ยวข้อง สงครามโลกครั้งที่ 2 https://youtu.be/evH9iPawSI4?si=vQt7VaykuyPGqisP (เดี๋ยวเวอร์ชันใหม่กำลังจะมา) สงครามเย็น https://youtu.be/2SZs7ZYIvmM?si=sn9kOzgnuEAgWsn4 (เดี๋ยวเวอร์ชันใหม่กำลังจะมาเช่นกัน) คริสต์มาส หยุดสงคราม https://youtu.be/ZBP9SNaIXGU?si=rAxw9khBuXx-cDYd อ้างอิง วีระชัย โชคมุกดา. (2537). สงครามโลกครั้งที่ 1 และ 2. กรุงเทพ: บริษัท ยิปซี กรุ๊ป จำกัด A Fire Waiting to be Lit: The Origins of World War I. (n.d.). https://www.crf-usa.org/resources/a-fire-waiting-to-be-lit-the-origins-of-world-war-i Germany | Facts, Geography, Maps, & History. (2024, January 12). Encyclopedia Britannica. https://www.britannica.com/place/Germany/Foreign-policy-1870-90 Imperial War Museums. (n.d.-a). Continuing Conflict: Europe after the First World War. https://www.iwm.org.uk/his...

      published: 21 Jan 2024
    • สรุปอารยธรรมอินเดีย #คลิปเดียวจบ | Point of View

      คลิปที่เกี่ยวข้อง มหาภารตะ คลิปเดียวจบ https://youtu.be/g1NVp19iUC0?si=cNRP4B1pQhe3JAe1 พระพุทธเจ้าอยู่ที่ไหน ในประวัติศาสตร์ https://youtu.be/3IsHK9a2K8k?si=7fUHOvDLSimiNwUR เกิดอะไรขึ้นหลังพระพุทธเจ้าปรินิพพาน https://youtu.be/GHrXnnRXmms?si=etv9mEiYCSRxmsSN ตะลุยอินเดีย บุกถ้ำอชันตา มรดกโลก 2200 ปี https://youtu.be/E53tOO9oQKE?si=wOJflidPLYvQVn7G พระพุทธรูปมาจากไหน https://youtu.be/nNKqXsVR7Wk?si=cqueC0u1V0URTIBr นิทานเวตาล https://youtu.be/oMuKxKOmBtc?si=WrJUr9GPOah2MyTL เที่ยวอัครา ตามหาต้นกำเนิดทัชมาฮาล https://www.youtube.com/live/UVkvNbMokCw?si=hz3kEUT5KK6xMxXG อ้างอิง Basham, A. L. (1954). The Wonder that was India: A Survey of the Culture of the Indian Sub-continent Before the Coming of the Muslims. London : Sidgwick and Jackson. Chandra, S. (2007). History of Medieval India: ...

      published: 14 Jan 2024
    • Joey Albert, Pops Fernandez - Points Of View (Lyric Video)

      Points Of View by Joye Albert and Pops Fernandez (Official Lyric Video) https://apple.co/2VQ6zGt https://bit.ly/2JIbZBC https://spoti.fi/2PXQwo5 PolyEast Records Corporation The company comprises two divisions – PolyEast Records Corporation which produces local artists and distributes independently produced albums and PolyEast/EMI Publishing together the worlds largest and most successful music publishers. PolyEast management is headed by professionals who are veterans in the music business. Their expertise has made the company one of the top record companies in the Philippines. Currently the local artist in its roster are Martin Nievera (the top recording artist), Bamboo Mañalac (former vocalist of the band Bamboo), Zsa Zsa Padilla, TJ Monterde, Sassa Dagdag, Chan Millanes, Drei Raña ...

      published: 30 May 2019
    • อิสราเอล-ปาเลสไตน์ รบกันทำไม? | Point of View

      อ้างอิง - Al-Mughrabi, N., Farrell, S., & Heller, J. (2021, May 12). Dozens dead as Israel and Hamas escalate aerial bombardments. Reuters. https://www.reuters.com/world/middle-east/palestinian-rocket-fire-israeli-air-strikes-gaza-2021-05-11/ - BBC News. (2021, May 10). Jerusalem violence: The Israeli-Palestinian situation explained. https://www.bbc.com/news/newsbeat-44124396 - Carey, A., Gold, H., Khadder, K., Salman, A., Eshel, O., & Dahman, I. (2021, May 12). Israel-Palestine conflict: At least 35 killed in Gaza as Israel ramps up airstrikes in response to rocket attacks. CNN. https://edition.cnn.com/2021/05/11/middleeast/israel-gaza-airstrikes-rockets-intl/index.html - Farr, A. (2017, June 12). สงครามหกวัน : ย้อนรอยเส้นทางอิสราเอลยึดครองปาเลสไตน์. Halal Life Magazine. https://www.h...

      published: 12 May 2021
    • Joey Albert & Pops Fernandez - Points of View (Official Lyric Video)

      Official Lyric Video - POINTS OF VIEW Click to SUBSCRIBE: http://bit.ly/polyeastrec For more info please visit PolyEast Records social sites: Facebook: https://www.facebook.com/polyeastrecordsphilippines/ Twitter: https://twitter.com/PolyEastRecords?s=09 Instagram: https://instagram.com/polyeastrecords?igshid=1ej7bqf5pwoeq Tiktok: https://vt.tiktok.com/ZSJDWFjqN/ PolyEast Records is one of the top record companies in the Philippines. Headed by veterans in the music business, PolyEast's artists include top recording artists such as Martin Nievera, Bamboo, Sandwich, Glaiza De Castro, Sassa Dagdag, Chan Millanes, Drei Raña, Komiko, Deuces, Safe, The Eighth of March, The 28th, Izzeah, Selena Marie, Vanz Bonaobra, Raffy Calicdan, Angela, Anna Aquino, Marlo Mortel, Ron Macapagal, Benedict Cu...

      published: 16 Oct 2021
    • First person vs. Second person vs. Third person - Rebekah Bergman

      Discover how point of view can transform a story, and find out how to choose between first, second, and third person in your writing. -- Who is telling a story, and from what perspective, are some of the most important choices an author makes. Told from a different point of view, a story can transform completely. Third person, first person, and second person perspectives each have unique possibilities and constraints. So how do you choose a point of view for your story? Rebekah Bergman explores the different ways to focus a story. Lesson by Rebekah Bergman, directed by Gibbons Studio. Animator's website: http://www.gibbonsstudio.net/ Sign up for our newsletter: http://bit.ly/TEDEdNewsletter Support us on Patreon: http://bit.ly/TEDEdPatreon Follow us on Facebook: http://bit.ly/TEDEdFace...

      published: 25 Jun 2020
    สรุปสงครามโลกครั้งที่ 1 #คลิปเดียวจบ | Point of View
    21:16

    สรุปสงครามโลกครั้งที่ 1 #คลิปเดียวจบ | Point of View

    • Order:
    • Duration: 21:16
    • Uploaded Date: 21 Jan 2024
    • views: 89517
    คลิปที่เกี่ยวข้อง สงครามโลกครั้งที่ 2 https://youtu.be/evH9iPawSI4?si=vQt7VaykuyPGqisP (เดี๋ยวเวอร์ชันใหม่กำลังจะมา) สงครามเย็น https://youtu.be/2SZs7ZYIvmM?si=sn9kOzgnuEAgWsn4 (เดี๋ยวเวอร์ชันใหม่กำลังจะมาเช่นกัน) คริสต์มาส หยุดสงคราม https://youtu.be/ZBP9SNaIXGU?si=rAxw9khBuXx-cDYd อ้างอิง วีระชัย โชคมุกดา. (2537). สงครามโลกครั้งที่ 1 และ 2. กรุงเทพ: บริษัท ยิปซี กรุ๊ป จำกัด A Fire Waiting to be Lit: The Origins of World War I. (n.d.). https://www.crf-usa.org/resources/a-fire-waiting-to-be-lit-the-origins-of-world-war-i Germany | Facts, Geography, Maps, & History. (2024, January 12). Encyclopedia Britannica. https://www.britannica.com/place/Germany/Foreign-policy-1870-90 Imperial War Museums. (n.d.-a). Continuing Conflict: Europe after the First World War. https://www.iwm.org.uk/history/continuing-conflict-europe-after-the-first-world-war Imperial War Museums. (n.d.-b). What you need to know about Pre-First World War alliances. https://www.iwm.org.uk/history/what-you-need-to-know-about-pre-first-world-war-alliances Proclamation of the German Empire, 1871. (2018, August 23). Palace of Versailles. https://en.chateauversailles.fr/discover/history/key-dates/proclamation-german-empire-1871 Shvangiradze, T. (2024, January 11). What was the Concert of Europe? TheCollector. https://www.thecollector.com/what-was-the-concert-of-europe/ Sked, A. (n.d.). Austria-Hungary and the First World War. Cairn.info. https://www.cairn.info/revue-histoire-politique-2014-1-page-16.htm The Impact of the First World War and Its Implications for Europe Today | Heinrich Böll Stiftung | Brussels office - European Union. (2014, June 2). Heinrich Böll Stiftung | Brussels Office - European Union. https://eu.boell.org/en/2014/06/02/impact-first-world-war-and-its-implications-europe-today The League of Nations (article) | Khan Academy. (n.d.). Khan Academy. https://www.khanacademy.org/humanities/us-history/rise-to-world-power/us-in-wwi/a/the-league-of-nations World War I: Summary, causes & facts. (2009, October 29). HISTORY. https://www.history.com/topics/world-war-i/world-war-i-history ย้อนดูการแบ่งขั้วของมหาอํานาจโลก ชนวนเหตุของการเกิดสงครามโลกครั้งที่ 1. (2022a, July 15). GQ Thailand. https://www.gqthailand.com/style/article/about-the-war - - - - - - - - - - - - - - ติดต่องาน : contact@pointofview.site (งานเท่านั้น) ทางไปซื้อสติกเกอร์ line http://line.me/S/sticker/1193089 และ https://line.me/S/sticker/1530409 ติดตามคลิปอื่นๆ http://www.youtube.com/c/PointofView ติดตามผลงานอื่นๆได้ที่ https://www.facebook.com/pointoofview/ tiktok @pointoofview หรือ IG Point_of_view_th #PointofView
    https://wn.com/สรุปสงครามโลกครั้งที่_1_คลิปเดียวจบ_|_Point_Of_View
    สรุปอารยธรรมอินเดีย #คลิปเดียวจบ | Point of View
    29:33

    สรุปอารยธรรมอินเดีย #คลิปเดียวจบ | Point of View

    • Order:
    • Duration: 29:33
    • Uploaded Date: 14 Jan 2024
    • views: 250153
    คลิปที่เกี่ยวข้อง มหาภารตะ คลิปเดียวจบ https://youtu.be/g1NVp19iUC0?si=cNRP4B1pQhe3JAe1 พระพุทธเจ้าอยู่ที่ไหน ในประวัติศาสตร์ https://youtu.be/3IsHK9a2K8k?si=7fUHOvDLSimiNwUR เกิดอะไรขึ้นหลังพระพุทธเจ้าปรินิพพาน https://youtu.be/GHrXnnRXmms?si=etv9mEiYCSRxmsSN ตะลุยอินเดีย บุกถ้ำอชันตา มรดกโลก 2200 ปี https://youtu.be/E53tOO9oQKE?si=wOJflidPLYvQVn7G พระพุทธรูปมาจากไหน https://youtu.be/nNKqXsVR7Wk?si=cqueC0u1V0URTIBr นิทานเวตาล https://youtu.be/oMuKxKOmBtc?si=WrJUr9GPOah2MyTL เที่ยวอัครา ตามหาต้นกำเนิดทัชมาฮาล https://www.youtube.com/live/UVkvNbMokCw?si=hz3kEUT5KK6xMxXG อ้างอิง Basham, A. L. (1954). The Wonder that was India: A Survey of the Culture of the Indian Sub-continent Before the Coming of the Muslims. London : Sidgwick and Jackson. Chandra, S. (2007). History of Medieval India: 800-1700. Fukuyama, F. (2011). The origins of political order: From Prehuman Times to the French Revolution. Profile Books. Stein, B. (2010). A history of India. John Wiley & Sons. - - - - - - - - - - - - - - ติดต่องาน : contact@pointofview.site (งานเท่านั้น) ทางไปซื้อสติกเกอร์ line http://line.me/S/sticker/1193089 และ https://line.me/S/sticker/1530409 ติดตามคลิปอื่นๆ http://www.youtube.com/c/PointofView ติดตามผลงานอื่นๆได้ที่ https://www.facebook.com/pointoofview/ tiktok @pointoofview หรือ IG Point_of_view_th #PointofView
    https://wn.com/สรุปอารยธรรมอินเดีย_คลิปเดียวจบ_|_Point_Of_View
    Joey Albert, Pops Fernandez - Points Of View (Lyric Video)
    3:48

    Joey Albert, Pops Fernandez - Points Of View (Lyric Video)

    • Order:
    • Duration: 3:48
    • Uploaded Date: 30 May 2019
    • views: 5834058
    Points Of View by Joye Albert and Pops Fernandez (Official Lyric Video) https://apple.co/2VQ6zGt https://bit.ly/2JIbZBC https://spoti.fi/2PXQwo5 PolyEast Records Corporation The company comprises two divisions – PolyEast Records Corporation which produces local artists and distributes independently produced albums and PolyEast/EMI Publishing together the worlds largest and most successful music publishers. PolyEast management is headed by professionals who are veterans in the music business. Their expertise has made the company one of the top record companies in the Philippines. Currently the local artist in its roster are Martin Nievera (the top recording artist), Bamboo Mañalac (former vocalist of the band Bamboo), Zsa Zsa Padilla, TJ Monterde, Sassa Dagdag, Chan Millanes, Drei Raña and others. Other top acts who have independently produced their albums are being marketed and distributed by PolyEast Records. PolyEast is expanding its artist roster and has started doing collaborations with record labels from the SouthEast Asian region. For more info please visit Polyeast Records social sites: Facebook: http://on.fb.me/1oQUbSj Twitter: https://twitter.com/PolyEastRecords Instagram: https://instagram.com/PolyEastRecords #JoeyAlbert #PopsFernandez #PointsOfView #LyricVideo
    https://wn.com/Joey_Albert,_Pops_Fernandez_Points_Of_View_(Lyric_Video)
    อิสราเอล-ปาเลสไตน์ รบกันทำไม? | Point of View
    13:37

    อิสราเอล-ปาเลสไตน์ รบกันทำไม? | Point of View

    • Order:
    • Duration: 13:37
    • Uploaded Date: 12 May 2021
    • views: 3102300
    อ้างอิง - Al-Mughrabi, N., Farrell, S., & Heller, J. (2021, May 12). Dozens dead as Israel and Hamas escalate aerial bombardments. Reuters. https://www.reuters.com/world/middle-east/palestinian-rocket-fire-israeli-air-strikes-gaza-2021-05-11/ - BBC News. (2021, May 10). Jerusalem violence: The Israeli-Palestinian situation explained. https://www.bbc.com/news/newsbeat-44124396 - Carey, A., Gold, H., Khadder, K., Salman, A., Eshel, O., & Dahman, I. (2021, May 12). Israel-Palestine conflict: At least 35 killed in Gaza as Israel ramps up airstrikes in response to rocket attacks. CNN. https://edition.cnn.com/2021/05/11/middleeast/israel-gaza-airstrikes-rockets-intl/index.html - Farr, A. (2017, June 12). สงครามหกวัน : ย้อนรอยเส้นทางอิสราเอลยึดครองปาเลสไตน์. Halal Life Magazine. https://www.halallifemag.com/six-day-war/ - History.com Editors. (2018, August 21). Six-Day War. HISTORY. https://www.history.com/topics/middle-east/six-day-war - Zeitlin, S. (1947). Jewish Rights in Palestine. The Jewish Quarterly Review, 38(2), 119. https://doi.org/10.2307/1453037 - ศราวุฒิ อารีย์. (2014, August 4). รู้จัก ‘ฉนวนกาซ่า’ เข้าใจวิกฤติตะวันออกกลาง. Institute of Asian Studies, Chulalongkorn University. http://www.ias.chula.ac.th/ias/en/Article-Detail.php?id=1 - - - - - - - - - - - - - - ติดต่องาน : contact.pointofview.media@gmail.com (งานเท่านั้น) ทางไปซื้อสติกเกอร์ line http://line.me/S/sticker/1193089 และ https://line.me/S/sticker/1530409 ทางไปซื้อ วรรณคดีไทยไดเจสต์ https://godaypoets.com/product/thaidigest-limited-edition/ ติดตามคลิปอื่นๆ ที่ http://www.youtube.com/c/PointofView ติดตามผลงานอื่นๆได้ที่ https://www.facebook.com/pointoofview/ tiktok @pointoofview หรือ IG Point_of_view_th #PointofView ปาเลสไตน์ 00:00 ทำไมเล่า 00:46 ดินแดนศักดิ์สิทธิ์ 04:23 ความขัดแย้งในสมัยใหม่ 07:53 ก่อตั้งอิสราเอล 09:54 สงครามหกวัน 11:51 เหตุการณ์ปัจจุบัน
    https://wn.com/อิสราเอล_ปาเลสไตน์_รบกันทำไม_|_Point_Of_View
    Joey Albert & Pops Fernandez - Points of View (Official Lyric Video)
    3:49

    Joey Albert & Pops Fernandez - Points of View (Official Lyric Video)

    • Order:
    • Duration: 3:49
    • Uploaded Date: 16 Oct 2021
    • views: 1721215
    Official Lyric Video - POINTS OF VIEW Click to SUBSCRIBE: http://bit.ly/polyeastrec For more info please visit PolyEast Records social sites: Facebook: https://www.facebook.com/polyeastrecordsphilippines/ Twitter: https://twitter.com/PolyEastRecords?s=09 Instagram: https://instagram.com/polyeastrecords?igshid=1ej7bqf5pwoeq Tiktok: https://vt.tiktok.com/ZSJDWFjqN/ PolyEast Records is one of the top record companies in the Philippines. Headed by veterans in the music business, PolyEast's artists include top recording artists such as Martin Nievera, Bamboo, Sandwich, Glaiza De Castro, Sassa Dagdag, Chan Millanes, Drei Raña, Komiko, Deuces, Safe, The Eighth of March, The 28th, Izzeah, Selena Marie, Vanz Bonaobra, Raffy Calicdan, Angela, Anna Aquino, Marlo Mortel, Ron Macapagal, Benedict Cua, and TJ Monterde. Featuring the music of JP Noche, Zsara, Jaja, Joanne, Emman Mores, Quennie, Richelle, Janelle Seva, Floramie, Paula Fernandez, Iris, Raye Imperial, Meleena, Tim Canda, Tery T& JunArcilla, Hazel Velasco, Fidelity, Vic Facultad and Weather the Roots, Pisento, Jurassic Pards, Himaya and Makatha. www.polyeastrecords.com #JoeyAlbert #PolyEastRecords #OfficialLyricVideo
    https://wn.com/Joey_Albert_Pops_Fernandez_Points_Of_View_(Official_Lyric_Video)
    First person vs. Second person vs. Third person - Rebekah Bergman
    5:20

    First person vs. Second person vs. Third person - Rebekah Bergman

    • Order:
    • Duration: 5:20
    • Uploaded Date: 25 Jun 2020
    • views: 1173901
    Discover how point of view can transform a story, and find out how to choose between first, second, and third person in your writing. -- Who is telling a story, and from what perspective, are some of the most important choices an author makes. Told from a different point of view, a story can transform completely. Third person, first person, and second person perspectives each have unique possibilities and constraints. So how do you choose a point of view for your story? Rebekah Bergman explores the different ways to focus a story. Lesson by Rebekah Bergman, directed by Gibbons Studio. Animator's website: http://www.gibbonsstudio.net/ Sign up for our newsletter: http://bit.ly/TEDEdNewsletter Support us on Patreon: http://bit.ly/TEDEdPatreon Follow us on Facebook: http://bit.ly/TEDEdFacebook Find us on Twitter: http://bit.ly/TEDEdTwitter Peep us on Instagram: http://bit.ly/TEDEdInstagram View full lesson: https://ed.ted.com/lessons/first-person-vs-second-person-vs-third-person-rebekah-bergman Thank you so much to our patrons for your support! Without you this video would not be possible! Hugo Legorreta, Zhexi Shan, Gustavo Mendoza, Bárbara Nazaré, Josh Engel, Natalia Rico, Andrea Feliz, Eysteinn Guðnason, Bernardo Paulo, Victor E Karhel, Sydney Evans, Latora Slydell, Oyuntsengel Tseyen-Oidov, Noel Situ, Elliot Poulin, emily lam, Juan , Jordan Tang, Kent Logan, Alexandra Panzer, Laura Cameron Keith, Jen , Ellen Spertus, Cailin Ramsey, Markus Goldhacker, Leora Allen, Andras Radnothy, Chris, Arpita Singh, Vijayalakshmi, Marc Bilodeau, Peng, Tzu-Hsiang, paul g mohney, Maya Toll, Sebastian Regez, Bruno Hannud, Andreas Voltios, Shubham Arora, Ugur Doga Sezgin, Akinola Emmanuel, Kyanta Yap, Ricardo Rendon Cepeda, Ana Maria, Benjamin & Shannon Pinder, Ernest Chow, Bela Namyslik, Alan Froese, Anika Westburg, Nick Cozby, Shawar Khan, Michael Braun-Boghos, Rohan Gupta, Elizabeth Cruz, Yujing Jiang, Sarah Lundegaard, Vladimir Ivanchenko, Georg Gusewski, Rohit Lodha, Erica Zhuang, Aaron Henson, Julio Sabatés Rodríguez, Vivian & Gilbert Lee, Fahad Nasser Chowdhury, ரமணன், John simmons, June Reiling, Khalid AlAli, Mickey Mikeworth, Nathaniel Lupus and Yansong Li.
    https://wn.com/First_Person_Vs._Second_Person_Vs._Third_Person_Rebekah_Bergman
    • Perspective L Shape Block

      published: 28 Jun 2013
    • Engineering Drawing Tutorials/Perspective drawings with front and side view (T 3.1 a)

      Engineering Drawing Tutorials.Perspective drawing Front & Side view (Section) with question and step-wise solution. Engineering Drawing Tutorial's solution of I.O.E (T.U),K.U and PU of Tutorial 3. For more Engineering Drawing solutions, http://geniusnepal.com/

      published: 01 Feb 2014
    • The Math behind (most) 3D games - Perspective Projection

      Perspective matrices have been used behind the scenes since the inception of 3D gaming, and the majority of vector libraries will have built-in helper functions to construct them for you. But what if you wanted to know the reasoning behind how these matrices are constructed. I start off with a brief introduction of computer graphics and the key ideas behind 3D rendering. I differentiate between Image Order Rasterization typically used by Ray tracers, and object order rasterization as used in most video games. I then present an animated walkthrough showing the full derivation of both the orthographic and perspective projection matrices. My derivation here is focused on the Vulkan API, but the reasoning applies just as well to other API's such as OpenGL or direct X, with the only notable...

      published: 08 Jun 2021
    • Two point perspective example 1 (2017)

      published: 22 Feb 2017
    • Perspective projection in 5 minutes

      Equivalent to a 50 minute university lecture on perspective projection. Part 1 of 2. 0:00 - intro 0:28 - pin-hole camera 0:43 - room-sized pin-hole camera 1:24 - pictures of the sun everywhere 2:23 - aperture size and blur 2:57 - lenses 3:49 - focus 4:28 - depth of field Graphics in 5 minutes is a series of cartoon-style videos that teach computer graphics in 10x less time. You can take the equivalent of a University level computer graphics course in just over two hours. The playlist is here: https://www.youtube.com/playlist?list=PLWfDJ5nla8UpwShx-lzLJqcp575fKpsSO See here for more information: https://g5m.cs.washington.edu/

      published: 03 Jun 2022
    • How to Draw in Perspective for Beginners

      Step by step tutorial on basic perspective. Quick tutorial on one point, two point, and three point perspective. When drawing anything in perspective, try to visualize the elements behind the object. This will help you to see the volume of the objects. If this helps you, please consider supporting me on Patreon, http://www.patreon.com/artofwei ►SUBSCRIBE http://www.youtube.com/subscription_center?add_user=weiworks One point and two point perspective is very useful, whereas three point perspective in not commonly used for general drawing. Unless you are doing some serious cityscape drawings. ►Learn how to draw with pencils with my step by step drawing tutorials. Let me show you how to draw anything from beginning to the end. For some subject like drawing animals, blocking in the basic sh...

      published: 22 Aug 2016
    • Understand 5-point perspective in 1 minute

      This is a very basic overview of how to get started with 5-point perspective by making a grid and plugging in details. #perspective #fisheyedrawing #wideangledrawing #povdrawing #paulheaston

      published: 28 Mar 2022
    • Measured Perspective Drawing - House Shape

      published: 27 Feb 2013
    • How Does Perspective Work?

      Different perspectives are all about creating the illusion of depth and we use them each for different reasons and situations Learn more in the lesson tagged below the title of this short!

      published: 05 Dec 2023
    • 7 Types of Perspective You Should Know #shorts

      Watch til the end of the Bonus type! 7+1 types of perspective every artist, architect, and designer should know. Which type do you use the most? Download a free PDF with all the 7 types of perspective with examples here: https://sketchlikeanarchitect.com/perspective-types - one point perspective drawing - 2 point perspective drawing - vertical 2 point perspective drawing - 3 point perspective drawing - multi point perspective drawing - 4 point curvilinear perspective drawing - 5 point curvilinear perspective drawing - aerial (atmospheric) perspective drawing ONLINE COURSE 'SKETCH LIKE AN ARCHITECT' - Join here: https://sketchlikeanarchitect.com/course MY BOOKS ON ARCHITECTURAL SKETCHING - Sketch Like an Architect (vol. 01): https://www.sketchlikeanarchitect.com/firstbook - Sketch Like ...

      published: 17 Mar 2022
    Perspective L Shape Block
    6:08

    Perspective L Shape Block

    • Order:
    • Duration: 6:08
    • Uploaded Date: 28 Jun 2013
    • views: 124255
    https://wn.com/Perspective_L_Shape_Block
    Engineering Drawing Tutorials/Perspective drawings with front and side view (T 3.1 a)
    0:34

    Engineering Drawing Tutorials/Perspective drawings with front and side view (T 3.1 a)

    • Order:
    • Duration: 0:34
    • Uploaded Date: 01 Feb 2014
    • views: 71696
    Engineering Drawing Tutorials.Perspective drawing Front & Side view (Section) with question and step-wise solution. Engineering Drawing Tutorial's solution of I.O.E (T.U),K.U and PU of Tutorial 3. For more Engineering Drawing solutions, http://geniusnepal.com/
    https://wn.com/Engineering_Drawing_Tutorials_Perspective_Drawings_With_Front_And_Side_View_(T_3.1_A)
    The Math behind (most) 3D games - Perspective Projection
    13:20

    The Math behind (most) 3D games - Perspective Projection

    • Order:
    • Duration: 13:20
    • Uploaded Date: 08 Jun 2021
    • views: 459686
    Perspective matrices have been used behind the scenes since the inception of 3D gaming, and the majority of vector libraries will have built-in helper functions to construct them for you. But what if you wanted to know the reasoning behind how these matrices are constructed. I start off with a brief introduction of computer graphics and the key ideas behind 3D rendering. I differentiate between Image Order Rasterization typically used by Ray tracers, and object order rasterization as used in most video games. I then present an animated walkthrough showing the full derivation of both the orthographic and perspective projection matrices. My derivation here is focused on the Vulkan API, but the reasoning applies just as well to other API's such as OpenGL or direct X, with the only notable differences being the size of the canonical viewing volumes, and the handedness and conventions of the xyz coordinate systems. 0:00 How does 3D graphics work? 2:05 Image versus object order rendering 2:51 The Orthographic Projection matrix 5:17 The perspective transformation 7:08 Homogeneous Coordinate division 8:27 Constructing the perspective matrix 10:29 Non-linear z depths and z fighting 11:30 The perspective projection transformation ** Resources ** Fundamentals of Computer Graphics by Peter Shirley & Steve Marschner http://www.songho.ca/opengl/gl_projectionmatrix.html https://matthewwellings.com/blog/the-new-vulkan-coordinate-system/ https://www.insider.com/pixars-animation-evolved-toy-story-2019-6 ** Attributions** Ray tracing graphics cards - Photo by Nana Dua from Pexels Rubiks cube - Photo by Mathias P.R. Reding from Pexels Ray tracing in video games - https://www.digitaltrends.com/gaming/battlefield-v-dxr-ray-tracing-tested/ https://en.wikipedia.org/wiki/Line%E2%80%93plane_intersection
    https://wn.com/The_Math_Behind_(Most)_3D_Games_Perspective_Projection
    Two point perspective example 1 (2017)
    8:44

    Two point perspective example 1 (2017)

    • Order:
    • Duration: 8:44
    • Uploaded Date: 22 Feb 2017
    • views: 263947
    https://wn.com/Two_Point_Perspective_Example_1_(2017)
    Perspective projection in 5 minutes
    5:22

    Perspective projection in 5 minutes

    • Order:
    • Duration: 5:22
    • Uploaded Date: 03 Jun 2022
    • views: 32126
    Equivalent to a 50 minute university lecture on perspective projection. Part 1 of 2. 0:00 - intro 0:28 - pin-hole camera 0:43 - room-sized pin-hole camera 1:24 - pictures of the sun everywhere 2:23 - aperture size and blur 2:57 - lenses 3:49 - focus 4:28 - depth of field Graphics in 5 minutes is a series of cartoon-style videos that teach computer graphics in 10x less time. You can take the equivalent of a University level computer graphics course in just over two hours. The playlist is here: https://www.youtube.com/playlist?list=PLWfDJ5nla8UpwShx-lzLJqcp575fKpsSO See here for more information: https://g5m.cs.washington.edu/
    https://wn.com/Perspective_Projection_In_5_Minutes
    How to Draw in Perspective for Beginners
    10:56

    How to Draw in Perspective for Beginners

    • Order:
    • Duration: 10:56
    • Uploaded Date: 22 Aug 2016
    • views: 1885436
    Step by step tutorial on basic perspective. Quick tutorial on one point, two point, and three point perspective. When drawing anything in perspective, try to visualize the elements behind the object. This will help you to see the volume of the objects. If this helps you, please consider supporting me on Patreon, http://www.patreon.com/artofwei ►SUBSCRIBE http://www.youtube.com/subscription_center?add_user=weiworks One point and two point perspective is very useful, whereas three point perspective in not commonly used for general drawing. Unless you are doing some serious cityscape drawings. ►Learn how to draw with pencils with my step by step drawing tutorials. Let me show you how to draw anything from beginning to the end. For some subject like drawing animals, blocking in the basic shapes first is useful. For portrait drawings, starting with the eye is my preferred method of drawing. But whatever the subject matter or method, I will always show you the easiest and most effective way to draw. What drawing level are you at? If you are a BEGINNER artist, watch my basic drawing and shading videos: https://www.youtube.com/watch?v=mzzvCGfKZR8&list=PLhnHFsOn0cgdjNrlX4qeytqAUIhRqKbAI If you are an INTERMEDIATE artist, then portrait drawings should be a challenge to you: https://www.youtube.com/watch?v=MXjxNMTkocQ&list=PLhnHFsOn0cgdu88Wbv817y6dqmSA646V1 Timed Drawing CHALLENGES: https://www.youtube.com/watch?v=3FwDun43ymY&list=PLhnHFsOn0cgeAx5vyraqpnEKoS_4kWwgh Drawing ANIMALS is a great way to learn about form and shading. Learn how to draw horses, lions, elephants, sharks, etc here: https://www.youtube.com/watch?v=JSN_Lek1624&list=PLhnHFsOn0cgc2Lu12g23J_TlvL3s-Fagk Learn how to draw human anatomy the easy way. These videos will show you how to draw the head, eyes, nose, lips, and hands: https://www.youtube.com/watch?v=v4gGEC5iCDE&list=PLhnHFsOn0cgdjdRTHduBTreOiRdLGSe3C Let's draw the human FIGURE in MOTION. Here are some simple steps to drawing great action poses: https://www.youtube.com/watch?v=5w-PD3wl76U&list=PLhnHFsOn0cgfxf7H-HCMZzsF5k_oDFRBX Draw any kind of HAIRSTYLES, whether it is straight hair or wavy hair, here is how you draw great looking hair: https://www.youtube.com/watch?v=j_A01hGekPQ&list=PLhnHFsOn0cgd-kFV9oPffpiM0anNxyt3v Want to draw GAME CHARACTERS? These game character drawings will help you draw with a more illustrative style. CLASH of CLANS and CLASH ROYALE game characters: https://www.youtube.com/watch?v=_RT-L2YMXvg&list=PLhnHFsOn0cgfBWQwPlZI89SD4dESwM_sv OVERWATCH game characters: https://www.youtube.com/watch?v=Mm63G0hw7zY&list=PLhnHFsOn0cgewUUyfNEFK7KEUYTy9QkO1 MORTAL KOMBAT game characters: https://www.youtube.com/watch?v=QOem3XlB9yA&list=PLhnHFsOn0cgdjRnejCqoFhIbaQ9DSvRAZ WORLD of WARCRAFT characters: https://www.youtube.com/watch?v=07AgjXTZ5hQ&list=PLhnHFsOn0cgetavd_pzYpk4vXapD9-m8w GAME of THRONES portrait drawings. Draw Khaleesi, Jon Snow, Tyrion, or a White Walker. More to come: https://www.youtube.com/watch?v=OyyIRFHA2Fc&list=PLhnHFsOn0cgcEiuP9PXlJabm0OwCO44yX ►To contact me, connect with me on my Facebook page. You can also send me your artworks there for critiques as many artist has done. https://www.facebook.com/artofwei ►Check into my Instagram account to get sneak peaks on up coming videos https://www.instagram.com/art_of_wei
    https://wn.com/How_To_Draw_In_Perspective_For_Beginners
    Understand 5-point perspective in 1 minute
    1:07

    Understand 5-point perspective in 1 minute

    • Order:
    • Duration: 1:07
    • Uploaded Date: 28 Mar 2022
    • views: 209594
    This is a very basic overview of how to get started with 5-point perspective by making a grid and plugging in details. #perspective #fisheyedrawing #wideangledrawing #povdrawing #paulheaston
    https://wn.com/Understand_5_Point_Perspective_In_1_Minute
    Measured Perspective Drawing - House Shape
    5:58

    Measured Perspective Drawing - House Shape

    • Order:
    • Duration: 5:58
    • Uploaded Date: 27 Feb 2013
    • views: 185370
    https://wn.com/Measured_Perspective_Drawing_House_Shape
    How Does Perspective Work?
    0:36

    How Does Perspective Work?

    • Order:
    • Duration: 0:36
    • Uploaded Date: 05 Dec 2023
    • views: 174732
    Different perspectives are all about creating the illusion of depth and we use them each for different reasons and situations Learn more in the lesson tagged below the title of this short!
    https://wn.com/How_Does_Perspective_Work
    7 Types of Perspective You Should Know #shorts
    0:40

    7 Types of Perspective You Should Know #shorts

    • Order:
    • Duration: 0:40
    • Uploaded Date: 17 Mar 2022
    • views: 374828
    Watch til the end of the Bonus type! 7+1 types of perspective every artist, architect, and designer should know. Which type do you use the most? Download a free PDF with all the 7 types of perspective with examples here: https://sketchlikeanarchitect.com/perspective-types - one point perspective drawing - 2 point perspective drawing - vertical 2 point perspective drawing - 3 point perspective drawing - multi point perspective drawing - 4 point curvilinear perspective drawing - 5 point curvilinear perspective drawing - aerial (atmospheric) perspective drawing ONLINE COURSE 'SKETCH LIKE AN ARCHITECT' - Join here: https://sketchlikeanarchitect.com/course MY BOOKS ON ARCHITECTURAL SKETCHING - Sketch Like an Architect (vol. 01): https://www.sketchlikeanarchitect.com/firstbook - Sketch Like an Architect (vol. 02): https://www.sketchlikeanarchitect.com/secondbook - Draw Like an Artist: 100 Buildings & Architectural Forms: https://www.sketchlikeanarchitect.com/thirdbook - Which book is right for you? Watch video trailers & learn more here: https://www.sketchlikeanarchitect.com/books DIGITAL VERSION OF THE BOOKS (PDF) - Downloadable PDF Ebook (vol. 01): https://www.sketchlikeanarchitect.com/pdf-01 - Downloadable PDF Ebook (vol. 02): https://www.sketchlikeanarchitect.com/pdf-02 MY FAVOURITE SKETCHING TOOLS - Pens, Pencils, Papers & More: https://www.sketchlikeanarchitect.com/tools YOUR GO-TO RESOURCE FOR ARCHITECTURAL SKETCHING - Website: https://www.sketchlikeanarchitect.com/ - Instagram: https://www.instagram.com/david_drazil/ - LinkedIn: https://linkedin.com/in/daviddrazil/ - Pinterest: https://pinterest.com/daviddrazil #SketchLikeAnArchitect #shorts
    https://wn.com/7_Types_Of_Perspective_You_Should_Know_Shorts
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • สรุปสงครามโลกครั้งที่ 1 #คลิปเดียวจบ | Point of View
      21:16
      สรุปสงครามโลกครั้งที่ 1 #คลิปเดียวจบ | Point of Viewremove from playlist
    • สรุปอารยธรรมอินเดีย #คลิปเดียวจบ | Point of View
      29:33
      สรุปอารยธรรมอินเดีย #คลิปเดียวจบ | Point of Viewremove from playlist
    • Joey Albert, Pops Fernandez - Points Of View (Lyric Video)
      3:48
      Joey Albert, Pops Fernandez - Points Of View (Lyric Video)remove from playlist
    • อิสราเอล-ปาเลสไตน์ รบกันทำไม? | Point of View
      13:37
      อิสราเอล-ปาเลสไตน์ รบกันทำไม? | Point of Viewremove from playlist
    • Joey Albert & Pops Fernandez - Points of View (Official Lyric Video)
      3:49
      Joey Albert & Pops Fernandez - Points of View (Official Lyric Video)remove from playlist
    • First person vs. Second person vs. Third person - Rebekah Bergman
      5:20
      First person vs. Second person vs. Third person - Rebekah Bergmanremove from playlist
    PLAYLIST TIME:

    สรุปสงครามโลกครั้งที่ 1 #คลิปเดียวจบ | Point of View

    คลิปที่เกี่ยวข้อง สงครามโลกครั้งที่ 2 https://youtu.be/evH9iPawSI4?si=vQt7VaykuyPGqisP (เดี๋ยวเวอร์ชันใหม่กำลังจะมา) สงครามเย็น https://youtu.be/2SZs7ZYIvmM?si=sn9kOzgnuEAgWsn4 (เดี๋ยวเวอร์ชันใหม่กำลังจะมาเช่นกัน) คริสต์มาส หยุดสงคราม https://youtu.be/ZBP9SNaIXGU?si=rAxw9khBuXx-cDYd อ้างอิง วีระชัย โชคมุกดา. (2537). สงครามโลกครั้งที่ 1 และ 2. กรุงเทพ: บริษัท ยิปซี กรุ๊ป จำกัด A Fire Waiting to be Lit: The Origins of World War I. (n.d.). https://www.crf-usa.org/resources/a-fire-waiting-to-be-lit-the-origins-of-world-war-i Germany | Facts, Geography, Maps, & History. (2024, January 12). Encyclopedia Britannica. https://www.britannica.com/place/Germany/Foreign-policy-1870-90 Imperial War Museums. (n.d.-a). Continuing Conflict: Europe after the First World War. https://www.iwm.org.uk/history/continuing-conflict-europe-after-the-first-world-war Imperial War Museums. (n.d.-b). What you need to know about Pre-First World War alliances. https://www.iwm.org.uk/history/what-you-need-to-know-about-pre-first-world-war-alliances Proclamation of the German Empire, 1871. (2018, August 23). Palace of Versailles. https://en.chateauversailles.fr/discover/history/key-dates/proclamation-german-empire-1871 Shvangiradze, T. (2024, January 11). What was the Concert of Europe? TheCollector. https://www.thecollector.com/what-was-the-concert-of-europe/ Sked, A. (n.d.). Austria-Hungary and the First World War. Cairn.info. https://www.cairn.info/revue-histoire-politique-2014-1-page-16.htm The Impact of the First World War and Its Implications for Europe Today | Heinrich Böll Stiftung | Brussels office - European Union. (2014, June 2). Heinrich Böll Stiftung | Brussels Office - European Union. https://eu.boell.org/en/2014/06/02/impact-first-world-war-and-its-implications-europe-today The League of Nations (article) | Khan Academy. (n.d.). Khan Academy. https://www.khanacademy.org/humanities/us-history/rise-to-world-power/us-in-wwi/a/the-league-of-nations World War I: Summary, causes & facts. (2009, October 29). HISTORY. https://www.history.com/topics/world-war-i/world-war-i-history ย้อนดูการแบ่งขั้วของมหาอํานาจโลก ชนวนเหตุของการเกิดสงครามโลกครั้งที่ 1. (2022a, July 15). GQ Thailand. https://www.gqthailand.com/style/article/about-the-war - - - - - - - - - - - - - - ติดต่องาน : contact@pointofview.site (งานเท่านั้น) ทางไปซื้อสติกเกอร์ line http://line.me/S/sticker/1193089 และ https://line.me/S/sticker/1530409 ติดตามคลิปอื่นๆ http://www.youtube.com/c/PointofView ติดตามผลงานอื่นๆได้ที่ https://www.facebook.com/pointoofview/ tiktok @pointoofview หรือ IG Point_of_view_th #PointofView
    21:16
    สรุปสงครามโลกครั้งที่ 1 #คลิปเดียวจบ | Point of View
    คลิปที่เกี่ยวข้อง สงครามโลกครั้งที่ 2 https://youtu.be/evH9iPawSI4?si=vQt7VaykuyPGqisP (เด...
    published: 21 Jan 2024
    Play in Full Screen
    29:33
    สรุปอารยธรรมอินเดีย #คลิปเดียวจบ | Point of View
    คลิปที่เกี่ยวข้อง มหาภารตะ คลิปเดียวจบ https://youtu.be/g1NVp19iUC0?si=cNRP4B1pQhe3JAe1 พร...
    published: 14 Jan 2024
    Play in Full Screen
    3:48
    Joey Albert, Pops Fernandez - Points Of View (Lyric Video)
    Points Of View by Joye Albert and Pops Fernandez (Official Lyric Video) https://apple.co/...
    published: 30 May 2019
    Play in Full Screen
    13:37
    อิสราเอล-ปาเลสไตน์ รบกันทำไม? | Point of View
    อ้างอิง - Al-Mughrabi, N., Farrell, S., & Heller, J. (2021, May 12). Dozens dead as Israe...
    published: 12 May 2021
    Play in Full Screen
    3:49
    Joey Albert & Pops Fernandez - Points of View (Official Lyric Video)
    Official Lyric Video - POINTS OF VIEW Click to SUBSCRIBE: http://bit.ly/polyeastrec For ...
    published: 16 Oct 2021
    Play in Full Screen
    5:20
    First person vs. Second person vs. Third person - Rebekah Bergman
    Discover how point of view can transform a story, and find out how to choose between first...
    published: 25 Jun 2020
    Play in Full Screen

    Narration

    Narration is the use of—or the particularly chosen methodology or process (also called the narrative mode) of using—a written or spoken commentary to convey a story to an audience. Narration encompasses a set of techniques through which the creator of the story presents their story, including:

  • Narrative point of view: the perspective (or type of personal or non-personal "lens") through which a story is communicated
  • Narrative voice: the format (or type of presentational form) through which a story is communicated
  • Narrative time: the placement of the story's time-frame in the past, the present, or the future
  • A narrator is a personal character or a non-personal voice that the creator of the story develops to deliver information to the audience, particularly about the plot. The narrator may be a voice devised by the author as an anonymous, non-personal, or stand-alone entity; as the author herself/himself as a character; or as some other fictional or non-fictional character appearing and participating within their own story. The narrator is considered participant if he/she is a character within the story, and non-participant if he/she is an implied character or an omniscient or semi-omniscient being or voice that merely relates the story to the audience without being involved in the actual events. Some stories have multiple narrators to illustrate the storylines of various characters at the same, similar, or different times, thus allowing a more complex, non-singular point of view.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Engineering Drawing Tutorials/Perspective drawings with front and side view (T 3.1 a)
      0:34
      Engineering Drawing Tutorials/Perspective drawings with front and side view (T 3.1 a)remove from playlist
    • The Math behind (most) 3D games - Perspective Projection
      13:20
      The Math behind (most) 3D games - Perspective Projectionremove from playlist
    • Perspective projection in 5 minutes
      5:22
      Perspective projection in 5 minutesremove from playlist
    • How to Draw in Perspective for Beginners
      10:56
      How to Draw in Perspective for Beginnersremove from playlist
    • Understand 5-point perspective in 1 minute
      1:07
      Understand 5-point perspective in 1 minuteremove from playlist
    • How Does Perspective Work?
      0:36
      How Does Perspective Work?remove from playlist
    • 7 Types of Perspective You Should Know #shorts
      0:40
      7 Types of Perspective You Should Know #shortsremove from playlist
    PLAYLIST TIME:

    Perspective L Shape Block

    6:08
    Perspective L Shape Block
    published: 28 Jun 2013
    Play in Full Screen
    0:34
    Engineering Drawing Tutorials/Perspective drawings with front and side view (T 3.1 a)
    Engineering Drawing Tutorials.Perspective drawing Front & Side view (Section) with questi...
    published: 01 Feb 2014
    Play in Full Screen
    13:20
    The Math behind (most) 3D games - Perspective Projection
    Perspective matrices have been used behind the scenes since the inception of 3D gaming, ...
    published: 08 Jun 2021
    Play in Full Screen
    8:44
    Two point perspective example 1 (2017)
    published: 22 Feb 2017
    Play in Full Screen
    5:22
    Perspective projection in 5 minutes
    Equivalent to a 50 minute university lecture on perspective projection. Part 1 of 2. 0:...
    published: 03 Jun 2022
    Play in Full Screen
    10:56
    How to Draw in Perspective for Beginners
    Step by step tutorial on basic perspective. Quick tutorial on one point, two point, and th...
    published: 22 Aug 2016
    Play in Full Screen
    1:07
    Understand 5-point perspective in 1 minute
    This is a very basic overview of how to get started with 5-point perspective by making a g...
    published: 28 Mar 2022
    Play in Full Screen
    5:58
    Measured Perspective Drawing - House Shape
    published: 27 Feb 2013
    Play in Full Screen
    0:36
    How Does Perspective Work?
    Different perspectives are all about creating the illusion of depth and we use them each f...
    published: 05 Dec 2023
    Play in Full Screen
    0:40
    7 Types of Perspective You Should Know #shorts
    Watch til the end of the Bonus type! 7+1 types of perspective every artist, architect, and...
    published: 17 Mar 2022
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×