본문 바로가기

분류 전체보기47

Creating Lines Connected to Objects Using createPath() in After Effects createPath() is a function used in Adobe After Effects to create paths for shape layers using scripts. This function provides a method to define and modify the path of a shape. The createPath() function is primarily used in After Effects’ ExtendScript, which is based on JavaScript. Here is a detailed explanation of the createPath() function:var myPath = createPath(vertices, inTangents, outTangen.. 2024. 7. 14.
에프터이펙트 createPath()를 활용한 오브젝트에 연결된 라인 만들기 createPath()는 Adobe After Effects에서 스크립트를 사용하여 도형 레이어의 경로를 생성할 때 사용되는 함수입니다. 이 함수는 도형의 경로를 정의하고 수정할 수 있는 방법을 제공합니다. createPath() 함수는 주로 JavaScript를 기반으로 한 After Effects의 ExtendScript에서 사용됩니다. 다음은 createPath() 함수에 대한 자세한 설명입니다:var myPath = createPath(vertices, inTangents, outTangents, closed); 매개변수  1. vertices (Array of [Point]): 도형의 주요 버텍스 포인트 배열입니다. 각 포인트는 도형의 꼭짓점을 나타냅니다. 2. inTangents (Array .. 2024. 7. 14.
Creating a Looping Wiggle Expression The wiggle function in After Effects is used in the following format.wiggle(frequency, amplitude, octaves = 1, amplitude_mult = 0.5, time = t);  • frequency: The frequency of wiggles per second. • amplitude: The amplitude of the wiggle. • octaves: The complexity of the noise, with a default value of 1. • amplitude_mult: The multiplier for the amplitude of each octave, with a default value of 0.5.. 2024. 7. 11.
Wiggle() Expression 루핑만들기 에프터 이펙트의 wiggle 함수는 다음과 같은 형식으로 사용됩니다.wiggle(frequency, amplitude, octaves = 1, amplitude_mult = 0.5, time = t);  • frequency: 초당 wiggle 발생 빈도. • amplitude: wiggle의 진폭. • octaves: 노이즈의 복잡성, 기본값은 1입니다. • amplitude_mult: 각 옥타브에서 진폭의 곱셈 값, 기본값은 0.5입니다. • time: wiggle을 평가할 시간, 기본값은 현재 시간입니다. 위의 예제에서 1과 0.5는 각각 octaves와 amplitude_mult 값을 나타냅니다. 이는 wiggle 함수의 노이즈 복잡성과 각 옥타브의 진폭 곱셈 값을 설정합니다. 기본값으로 설정된 .. 2024. 7. 11.
Drawing a Line in 3D Space Using fromComp() in After Effects The fromComp() function is one of the functions used in Adobe After Effects’ expression language. This function is used to convert specific values from the composition coordinate system to another coordinate system. Function Description fromComp(point)  • point: The coordinates of the point to be converted from the composition coordinate system. This can be a 2D vector ([x, y]) or a 3D vector ([.. 2024. 7. 8.
에프터이펙트 fromComp()를 통해 3D 공간상에 라인 그리기 fromComp() 함수는 Adobe After Effects의 표현식(expression) 언어에서 사용되는 함수 중 하나입니다. 이 함수는 특정 값을 컴포지션 좌표계(composition coordinate system)에서 다른 좌표계로 변환하는 데 사용됩니다.함수 설명fromComp(point)  • point : 컴포지션 좌표계에서 변환하려는 점의 좌표입니다. 이는 2D 벡터([x, y]) 또는 3D 벡터([x, y, z])일 수 있습니다. 이 함수는 주어진 점을 컴포지션 좌표계에서 레이어 좌표계(layer coordinate system)로 변환합니다. 컴포지션 좌표계는 전체 컴포지션의 크기를 기준으로 한 좌표계를 의미하며, 레이어 좌표계는 특정 레이어 내에서의 좌표계를 의미합니다. 활용하는 .. 2024. 7. 8.
After Effects toWorld() Expression 3D Coordinate Transformation In Adobe After Effects, the toWorld() function is a very useful function for transforming the position of an object in 3D space. This function converts the local coordinates of a 3D layer to world coordinates. Below is a detailed explanation of the toWorld() function. Function DefinitiontoWorld(point) Parameters : point: An array in the format [x, y, z], representing the local coordinates of the.. 2024. 6. 25.
에프터이펙트 toWorld() Expression 3D 좌표 변환 에프터이펙트(Adobe After Effects)에서 toWorld() 함수는 3D 공간에서 객체의 위치를 변환하는 데 사용되는 매우 유용한 함수입니다. 이 함수는 3D 레이어의 로컬 좌표를 전역 좌표로 변환해 줍니다. 다음은 toWorld() 함수에 대한 자세한 설명입니다 함수 정의toWorld(point) 파라미터point: [x, y, z] 형식의 배열로, 레이어의 로컬 좌표를 나타냅니다. 2D 레이어의 경우 [x, y] 형식의 배열을 사용할 수 있습니다.반환 값전역 좌표계에서의 위치를 [x, y, z] 배열 형식으로 반환합니다.기본 사용 예제var globalPosition = thisLayer.toWorld(thisLayer.anchorPoint); 2D 레이어에서 사용var globalPosi.. 2024. 6. 25.
Understanding the After Effects Expression: toComp() The toComp() function is a method used in Adobe After Effects' expressions feature, which is utilized to convert a layer's local coordinates to composition coordinates. This method is particularly useful when working in 3D space and is commonly used when you need to convert a layer's position or a point to composition coordinates. Here is a detailed explanation of toComp(). Basic Usage toComp(po.. 2024. 6. 20.