2014-07-07から1日間の記事一覧

NGUI 3.5.5 How to make Scroll View

UnityのNGUIでスクロールビューを作るのは、3系だとかなり簡単になっていた NGUI > Create > 2D UI NGUI > Create > Scroll View NGUI > Create > Sprite (then attach it as scroll view's child) add component "UIDragScrollView" to the sprite, then dr…

golangでニュートン法を使ってsqrtを実装

チュートリアルの内容。http://go-tour-jp.appspot.com/#24 計算機科学の初期の内容なので、学んだのは10年前くらい。理解に時間がかかった・・・ package main import ( "fmt" ) func Sqrt(v float64) float64 { n := 100 //init value (that is near aroun…