Loading...
プログラミングB #12
#12 配列とクラス,その利用
高尾俊介(takawo@konan-wu.ac.jp)
甲南女子大学 文学部 メディア表現学科 講師
https://youtu.be/bwZHn-ffkWs?t=13441s
Flower Arrangement — fxhash
Flower arrangement made by code. Possible features: - Style: Natural, Oval, Triangular, Grassy - Orientation: Square, Portrait, Landscape - Palette: White, Cream, Tan, Pink, Green, Blue, Yellow, Oran
Stargazer — fxhash
Stargazer seeking something out of dark sky. Live view options: - Press "s" key: Saves the image - Press "f" key: Shows in fullscreen - Press "1" to "4" key: Explores different scenes Depending on t
https://opensea.io/collection/friendship-bracelets-by-alexis-andre
Bright Moments
Around the world in 10,000 NFTs.
www.brightmoments.io
フォントの読み込みだけ
テキスト関連の関数
https://p5js.org/reference/#:~:text=angleMode()-,Typography,-Attributes
Google Fonts
Google Fonts
Making the web more beautiful, fast, and open through great typography
fonts.google.com
+
プログラミングB #11
配列
配列とは
配列:箱状の変数が仕切られ,連なっており,要素ごとに番号が振られているようなイメージ
区切られた中に値やデータが入っている
プログラムにおける配列
配列は,変数や条件分岐,繰り返し処理といったプログラミング言語に共通する概念の一つ
大量の情報やデータを処理するために配列(やクラス)の概念が必要
配列に関する基本構文
配列の基本的な使い方
//変数arrを配列として宣言(基本の形)
let
arr = [];
//変数arrに配列として値を代入.予め用意する場合など.
arr = [
1
,
3
,
5
];
Please turn on JavaScript to use Paper in all of its awesomeness. ^_^
#12 配列とクラス,その利用
フォントの読み込みだけ
配列
配列に関する基本構文
//変数arrを配列として宣言(基本の形)
let arr = [];
//変数arrに配列として値を代入.予め用意する場合など.
arr = [1,3,5];