분류 전체보기
-
영단어 : rasterE.T.C 2018. 1. 5. 23:47
rasterization 명사(IT) 래스터화(~化) 위키https://en.wikipedia.org/wiki/Rasterisation 레이-트레이싱 방식과 반대되는 방식이라고 한다.화면을 주사하는 방식 참고할만한 글 http://blog.appkr.kr/learn-n-think/3d-graphics/ https://www.scratchapixel.com/lessons/3d-basic-rendering/rasterization-practical-implementation 무슨 말인지 모르겠다 ^^
-
C :: ifdef과 #include의 역할은 무엇인가Programming Language/C Programming 2018. 1. 5. 23:29
///ARDUBOY 커뮤니티의 글https://community.arduboy.com/t/purpose-of-ifndef-and-define/3592 위의 링크의 내용을 참조바랍니다. 간단히 정리하면, #include는 간단히 복사 붙여넣기를 한 것인데 만약 #include "헤더파일.h"가 이중으로 선언된다면이중으로 복사 붙여넣기를 한 것이 되기 때문에 이것을 막기 위해 #ifndef 헤더파일_H //이와 같은 형식으로 선언을 하고#define 헤더파일_H #endif 이렇게 해놓으면 만약 후일에 실수로 이중으로 #include "헤더파일.h"#include "헤더파일.h" //이중으로 복사 붙여넣기가 되었다. (duplicated) 이미 '헤더파일_H' 이라고 정의가 되어있기 때문에 이중으로 복사 붙..
-
함수 정리 (1)E.T.C/R 2017. 9. 8. 11:53
참고하는 대부분의 함수는 RGui console에서 help.search() 함수를 이용해 찾았다. 예를 들어 help.search("head")를 검색하면 'head'라는 키워드가 들어간 함수들이 나열된다. \- utils::head : Return the First or Last Part of an Object setwd() : 킬 때마다 해줘야 한다. base::length : Length of an Object Get or set the length of vectors (including lists) and factors, and of any other **R** object for which a method has been defined. nchar 함수와 차이점이 있다면 length 함수는 c..