Skip to main content

Mathematic ll Final Exam Y1S2

 









































Comments

Popular posts from this blog

AWSD controller with c#

      using   UnityEngine ;   using   System.Collections ;   using   System.Collections.Generic ;     [ RequireComponent  ( typeof ( Rigidbody ) ) ]   public   class  PlayerController  :  MonoBehaviour  {         public   float  movementSpeed  =  5 . 0f ;         void  Start  ( )   {                 }             void  Update  ( )   {           Rigidbody rigidbody  =  GetComponent < Rigidbody > ( ) ;             if ( Input . GetKey ( KeyCode . W ) )   {              transform . position   +=  Vector3 . forward   *  Time . deltaTime   *  movementSpeed ;           }     ...

Project 7 Soy Vitou (ITE G8_A2) in Royal University of Phnom Penh (RUPP)

7-segment Display An LED or Light Emitting Diode, is a solid state optical pn-junction diode which emits light energy in the form of photons. The emission of these photons occurs when the diode junction is forward biased by an external voltage allowing current to flow across its junction, and in Electronics we call this process electroluminescence. The actual colour of the visible light emitted by an LED, ranging from blue to red to orange, is decided by the spectral wavelength of the emitted light which itself is dependent upon the mixture of the various impurities added to the semiconductor materials used to produce it. 7-segment Display Light emitting diodes have many advantages over traditional bulbs and lamps, with the main ones being their small size, long life, various colours, cheapness and are readily available, as well as being easy to interface with various other electronic components and digital circuits. But the main advantage of light emitting diodes is that because of th...

Simple swipe and tap on mobile phone

 Simple swipe and tap on mobile phone   private  Vector3 fp ;     //First touch position      private  Vector3 lp ;     //Last touch position      private   float  dragDistance ;    //minimum distance for a swipe to be registered        void  Start ( )      {         dragDistance  =  Screen . height   *   15   /   100 ;   //dragDistance is 15% height of the screen      }        void  Update ( )      {          if   ( Input . touchCount   ==   1 )   // user is touching the screen with a single touch          {             Touch touch  =  Input . GetTouch ( 0 ) ;   // get the touch              i...