This file contains 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
//ボタンをタップした処理だけを実行するための関数 | |
private bool IsPointerOverUIObject() | |
{ | |
PointerEventData eventDataCurrentPosition = new PointerEventData(EventSystem.current); | |
eventDataCurrentPosition.position = new Vector2(Input.mousePosition.x, Input.mousePosition.y); | |
List<RaycastResult> results = new List<RaycastResult>(); | |
EventSystem.current.RaycastAll(eventDataCurrentPosition, results); |
This file contains 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"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>円上のn分点を結ぶ</title> | |
<script> | |
function diamond(c,n,x,y,r,color){ | |
c.strokeStyle = color; |
This file contains 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"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>BMI値計算</title> | |
<script> | |
window.onload = function(){ | |
document.getElementById("button").onclick = function(){ |
This file contains 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"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>ストップウォッチ</title> | |
<script> | |
window.onload = function () { |
This file contains 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
band,バンド | |
bar,棒 | |
bear,クマ | |
beef,牛肉 | |
beer,ビール | |
bell,ベル | |
butter,バター | |
candle,ろうそく | |
candy,キャンディー | |
carpet,じゅうたん |
This file contains 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
IEnumerator Timer() | |
{ | |
while (true) | |
{ | |
DateTime dtNow = DateTime.Now; | |
DayOfWeek week = dtNow.DayOfWeek; | |
int weekNumber = (int)dtNow.DayOfWeek; | |
now_year = dtNow.Year; | |
now_month = dtNow.Month; |
This file contains 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; | |
namespace Example | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("C# gives you programing power."); | |
} |
This file contains 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
package chap06; | |
import java.util.Random; | |
import java.util.Scanner; | |
class Ex614 { | |
public static void main(String[] args) { | |
Scanner stdIn = new Scanner(System.in); | |
Random rand = new Random(); | |
String[] monthString = {"January","Feburary","March","April","May","June", | |
"July","August","September","October","November","December" | |
}; |
NewerOlder