- o = [xo = 0, yo = 0] is the origin
- A = [xA, yA] is a point on the 2D plane. Same for B, C, ...
- lengths are in any unit (ex: pixels)
- code snippets are in JavaScript
angleRad = angleDeg * Math.PI / 180;
This is a compilation of various open-source Unity plugins, codebases, or utility scripts that may aid in expediting the development process.
"ProbePolisher is a Unity Editor plugin for editing light probes. It works both on Unity Basic (free) and Unity Pro."
| #include <stdio.h> | |
| int main() | |
| { | |
| int month[2], day[2], year[2], i, t, age; | |
| scanf("%d", &t); | |
| for (i = 1; i <= t; ++i) | |
| { |
| /// Author :Shohanur Rahaman | |
| /// UVA 10591 | |
| #include<stdio.h> | |
| #include<math.h> | |
| int main() | |
| { |
| /// Author : shohanur Rahaman | |
| ///Problem level : easy | |
| /// URI : 1566 | |
| #include<iostream> | |
| #include<stdio.h> | |
| #include<algorithm> | |
| using namespace std; |
| /// Author : Shohan | |
| // Uva : 11462 | |
| #include<stdio.h> | |
| #include<stdlib.h> | |
| int compair(const void *i, const void *j); | |
| int main() | |
| { |
| /// Author: Shohanur Rahaman | |
| // UVA : 11727 | |
| #include<stdio.h> | |
| void sort(int array_size,int array[]); | |
| int salary[3]; | |
| int main() | |
| { |
| ///Author : Shohanur Rahaman | |
| //Problem level : Easy | |
| //UVA : 11332 (Summing Digits) | |
| #include <stdio.h> | |
| int main() | |
| { | |
| int t; | |
| long long int n; |
| package notepad; | |
| import javax.swing.*; | |
| import java.awt.*; | |
| import java.awt.event.*; | |
| import java.util.Scanner; | |
| import java.io.*; | |
| public class Notepad extends JFrame implements ActionListener { | |
| private TextArea textArea = new TextArea("", 0,0, TextArea.SCROLLBARS_VERTICAL_ONLY); |
| // Author : Md.Shohanur Rahaman | |
| import java.util.Scanner; | |
| import java.lang.StringBuffer; | |
| public class Main { | |
| public static void main(String args[]){ | |
| Scanner input=new Scanner(System.in); | |
| String str; |