엑셀 파일 종류별(통합문서, 매크로, 추가기능) 파일 포맷 자료
엑셀에서 자주 사용되는 파일 형태인 '통합 문서', '매크로 포함 통합문서', '엑셀 추가기능' 파일에 대해서, 각 포맷을 정리해 둔다. 파일 종류 확장자 지원되는 엑셀 버전 설명 통합 문서 .xls Excel 5.0, Excel 95 BIFF5 포맷 .xls Excel 97 - Excel 2003 BIFF8 포맷, 설명 페이지 .xlsx Excel 2007 부터 - 설명 페이지 매크로 통합 문서 .xlsm Excel 2007, Excel 2010, Excel 2013, Excel 2016 설명 페이지 추가 기능 .xla Excel 97 - Excel 2003 위 xls와 xlsm 설명 페이지와 동일 .xlam Excel 2007, Excel 2010 - - - MS Office 문서 암호화에 대한 설명..
Draw dots with several circles
Code from manimlib.imports import * # draw dots instead the lines class Rotate_Circles3_DrawDots(Scene): def construct(self): running_time = 10.2 ### 1. circles and dots circles_radius = [2.5, 1, 0.8, 0.4, 0.1] circle_orgins = [ np.array([0, 0, 0]), np.array([0 + 2.5, 0, 0]), np.array([2.5 + 1, 0, 0]), np.array([3.5 + 0.8, 0, 0]), np.array([4.3 + 0.1, 0, 0]), ] curve_start = np.array([4.4, 0, 0]..
Draw line with rotating circles
Code # draw curve by the last dot class Rotate_Circles2(Scene): def construct(self): running_time = 10.2 ### 1. circles and dots circles_radius = [2.5, 1, 0.8, 0.4, 0.1] circle_orgins = [ np.array([0, 0, 0]), np.array([0 + 2.5, 0, 0]), np.array([2.5 + 1, 0, 0]), np.array([3.5 + 0.8, 0, 0]), np.array([4.3 + 0.1, 0, 0]), ] curve_start = np.array([4.4, 0, 0]) circles = [Circle(radius=r, name=str(i)..