KeyframeSequence
Inheritance: java.lang.Object, com.aspose.threed.A3DObject
All Implemented Interfaces: java.lang.Iterable
public class KeyframeSequence extends A3DObject implements Iterable<KeyFrame>
키 프레임의 순서로, 시간에 따른 샘플링 값의 변환을 설명합니다.
생성자
| 생성자 | 설명 |
|---|---|
| KeyframeSequence(String name) | 새로운 KeyframeSequence 클래스의 인스턴스를 초기화합니다. |
| KeyframeSequence() | 새로운 KeyframeSequence 클래스의 인스턴스를 초기화합니다. |
메서드
| 메서드 | 설명 |
|---|---|
| add(double time, float value) | 지정된 값으로 새 키 프레임을 생성합니다. |
| add(double time, float value, Interpolation interpolation) | 지정된 값으로 새 키 프레임을 생성합니다. |
| equals(Object arg0) | |
| findProperty(String propertyName) | 속성을 찾습니다. |
| getBindPoint() | 이 곡선을 소유하는 속성 바인드 포인트를 가져옵니다. |
| getClass() | |
| getKeyFrames() | 이 곡선의 키 프레임을 가져옵니다. |
| getName() | 이름을 가져옵니다. |
| getPostBehavior() | 마지막 키 프레임 이후에 샘플링된 값이 어떻게 되어야 하는지를 나타내는 포스트 동작을 가져옵니다. |
| getPreBehavior() | 첫 번째 키 프레임 이전에 샘플링된 값이 어떻게 되어야 하는지를 나타내는 프리 동작을 가져옵니다. |
| getProperties() | 모든 속성의 컬렉션을 가져옵니다. |
| getProperty(String property) | 지정된 속성의 값을 가져옵니다 |
| hashCode() | |
| iterator() | 모든 키 프레임을 순회하기 위한 열거자를 가져옵니다. |
| notify() | |
| notifyAll() | |
| removeProperty(Property property) | 동적 속성을 제거합니다. |
| removeProperty(String property) | 이름으로 식별되는 지정된 속성을 제거합니다. |
| reset() | 모든 키 프레임을 제거하고 포스트/프리 동작을 재설정합니다. |
| setName(String value) | 이름을 설정합니다. |
| setProperty(String property, Object value) | 지정된 속성의 값을 설정합니다. |
| toString() | |
| wait() | |
| wait(long arg0) | |
| wait(long arg0, int arg1) |
KeyframeSequence(String name)
public KeyframeSequence(String name)
새로운 KeyframeSequence 클래스의 인스턴스를 초기화합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 이름 | java.lang.String | 이름 |
KeyframeSequence()
public KeyframeSequence()
새로운 KeyframeSequence 클래스의 인스턴스를 초기화합니다.
add(double time, float value)
public void add(double time, float value)
지정된 값으로 새 키 프레임을 생성합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 시간 | double | 시간 위치(초 단위 측정) |
| 값 | float | 이 시간 위치에서의 값 |
add(double time, float value, Interpolation interpolation)
public void add(double time, float value, Interpolation interpolation)
지정된 값으로 새 키 프레임을 생성합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 시간 | double | 시간 위치(초 단위 측정) |
| 값 | float | 이 시간 위치에서의 값 |
| interpolation | Interpolation | 이 키 프레임의 보간 유형 |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| arg0 | java.lang.Object |
Returns: boolean
findProperty(String propertyName)
public Property findProperty(String propertyName)
속성을 찾습니다. 동적 속성 (Created by CreateDynamicProperty/SetProperty) 또는 네이티브 속성 (Identified by its name)일 수 있습니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| propertyName | java.lang.String | 속성 이름. |
Returns: Property - The property.
getBindPoint()
public BindPoint getBindPoint()
이 곡선을 소유하는 속성 바인드 포인트를 가져옵니다.
Returns: BindPoint - the property bind point which owns this curve
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getKeyFrames()
public List<KeyFrame> getKeyFrames()
이 곡선의 키 프레임을 가져옵니다.
Returns: java.util.List<com.aspose.threed.KeyFrame> - 이 곡선의 키 프레임.
getName()
public String getName()
이름을 가져옵니다.
Returns: java.lang.String - 이름.
getPostBehavior()
public Extrapolation getPostBehavior()
마지막 키 프레임 이후에 샘플링된 값이 어떻게 되어야 하는지를 나타내는 포스트 동작을 가져옵니다.
Returns: Extrapolation - the post behavior indicates what the sampled value should be after the last key frame.
getPreBehavior()
public Extrapolation getPreBehavior()
첫 번째 키 프레임 이전에 샘플링된 값이 어떻게 되어야 하는지를 나타내는 프리 동작을 가져옵니다.
Returns: Extrapolation - the pre behavior indicates what the sampled value should be before the first key.
getProperties()
public PropertyCollection getProperties()
모든 속성의 컬렉션을 가져옵니다.
Returns: PropertyCollection - the collection of all properties.
getProperty(String property)
public Object getProperty(String property)
지정된 속성의 값을 가져옵니다
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 속성 | java.lang.String | 속성 이름 |
Returns: java.lang.Object - 찾은 속성의 값
hashCode()
public native int hashCode()
Returns: int
iterator()
public Iterator<KeyFrame> iterator()
모든 키 프레임을 순회하기 위한 열거자를 가져옵니다.
Returns: java.util.Iterator<com.aspose.threed.KeyFrame>
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
removeProperty(Property property)
public boolean removeProperty(Property property)
동적 속성을 제거합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| property | Property | 제거할 속성 |
Returns: boolean - 속성이 성공적으로 제거되면 true
removeProperty(String property)
public boolean removeProperty(String property)
이름으로 식별되는 지정된 속성을 제거합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 속성 | java.lang.String | 제거할 속성 |
Returns: boolean - 속성이 성공적으로 제거되면 true
reset()
public void reset()
모든 키 프레임을 제거하고 포스트/프리 동작을 재설정합니다.
setName(String value)
public void setName(String value)
이름을 설정합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 값 | java.lang.String | 새 값 |
setProperty(String property, Object value)
public void setProperty(String property, Object value)
지정된 속성의 값을 설정합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 속성 | java.lang.String | 속성 이름 |
| 값 | java.lang.Object | 속성의 값 |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| arg0 | long | |
| arg1 | int |