This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>鈴木亜美 | Pickleball Player</title> | |
| <style> | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| :root { | |
| --green: #2d6a4f; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>NII Shonan Meeting 244 - Kamakura Excursion Guide</title> | |
| <style> | |
| :root { | |
| --bg: #f5f1ea; | |
| --paper: #fffdf9; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ExifTool Version Number : 11.85 | |
| File Name : DJI_0007.MP4 | |
| Directory : . | |
| File Size : 20 MB | |
| File Modification Date/Time : 2020:02:02 07:03:42-07:00 | |
| File Access Date/Time : 2020:02:02 07:03:41-07:00 | |
| File Inode Change Date/Time : 2020:02:02 07:03:49-07:00 | |
| File Permissions : rw-r--r-- | |
| File Type : MP4 | |
| File Type Extension : mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ExifTool Version Number : 11.85 | |
| File Name : DJI_0007.MP4 | |
| Directory : . | |
| File Size : 20 MB | |
| File Modification Date/Time : 2020:02:02 07:03:42-07:00 | |
| File Access Date/Time : 2020:02:02 07:03:41-07:00 | |
| File Inode Change Date/Time : 2020:02:02 07:03:49-07:00 | |
| File Permissions : rw-r--r-- | |
| File Type : MP4 | |
| File Type Extension : mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A-Frame Examples</title> | |
| <script src="https://aframe.io/releases/0.9.1/aframe.min.js"></script> | |
| </head> | |
| <body> | |
| <a-scene> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * RVO Demonstration | |
| * cf. http://gamma.cs.unc.edu/RVO/icra2008.pdf | |
| */ | |
| // parameters | |
| const acceleration = 1; | |
| const avoidanceTendency = 10; | |
| class Agent { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using RVO; | |
| using UnityEngine; | |
| using Random = System.Random; | |
| using Vector2 = RVO.Vector2; | |
| public class GameAgent : MonoBehaviour | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| using System.Net.Sockets; | |
| using System.Text; | |
| public class UDPClient : MonoBehaviour { | |
| public string host = "192.168.1.158"; | |
| public int port = 8883; | |
| private UdpClient client; | |
| private class Command { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // make sure to select "Box Colider" option at the Inspector panel | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class DragObject : MonoBehaviour { | |
| //float distance = 10; |
NewerOlder