AnimationChannel

Inheritance: java.lang.Object, com.aspose.threed.A3DObject, com.aspose.threed.KeyframeSequence

public class AnimationChannel extends KeyframeSequence

채널은 속성의 구성 요소 필드를 키프레임 시퀀스 집합에 매핑합니다.

메서드

메서드설명
add(double time, float value)지정된 값으로 새 키 프레임을 생성합니다.
add(double time, float value, Interpolation interpolation)지정된 값으로 새 키 프레임을 생성합니다.
equals(Object arg0)
findProperty(String propertyName)속성을 찾습니다.
getBindPoint()이 곡선을 소유하는 속성 바인드 포인트를 가져옵니다.
getClass()
getComponentType()구성 필드의 타입을 가져옵니다.
getDefaultValue()채널의 기본값을 가져옵니다.
getKeyFrames()이 곡선의 키 프레임을 가져옵니다.
getKeyframeSequence()이 채널 내부에 연결된 키프레임 시퀀스를 가져옵니다.
getName()이름을 가져옵니다.
getPostBehavior()마지막 키 프레임 이후에 샘플링된 값이 어떻게 되어야 하는지를 나타내는 포스트 동작을 가져옵니다.
getPreBehavior()첫 번째 키 프레임 이전에 샘플링된 값이 어떻게 되어야 하는지를 나타내는 프리 동작을 가져옵니다.
getProperties()모든 속성의 컬렉션을 가져옵니다.
getProperty(String property)지정된 속성의 값을 가져옵니다
hashCode()
iterator()모든 키 프레임을 순회하기 위한 열거자를 가져옵니다.
notify()
notifyAll()
removeProperty(Property property)동적 속성을 제거합니다.
removeProperty(String property)이름으로 식별되는 지정된 속성을 제거합니다.
reset()모든 키 프레임을 제거하고 포스트/프리 동작을 재설정합니다.
setDefaultValue(Object value)채널의 기본값을 설정합니다.
setKeyframeSequence(KeyframeSequence value)이 채널 내부에 연결된 키프레임 시퀀스를 가져옵니다.
setName(String value)이름을 설정합니다.
setProperty(String property, Object value)지정된 속성의 값을 설정합니다.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

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이 시간 위치에서의 값
interpolationInterpolation이 키 프레임의 보간 유형

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

매개변수형식설명
arg0java.lang.Object

Returns: boolean

findProperty(String propertyName)

public Property findProperty(String propertyName)

속성을 찾습니다. 동적 속성 (Created by CreateDynamicProperty/SetProperty) 또는 네이티브 속성 (Identified by its name)일 수 있습니다.

Parameters:

매개변수형식설명
propertyNamejava.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

getComponentType()

public Class<?> getComponentType()

구성 필드의 타입을 가져옵니다.

Returns: java.lang.Class - 구성 필드의 타입

getDefaultValue()

public Object getDefaultValue()

채널의 기본값을 가져옵니다. 채널에 연결된 키프레임 시퀀스가 없을 경우, 애니메이션 평가 중에 기본값이 사용됩니다. 실제 시나리오: 애니메이션이 노드의 x 좌표만 애니메이션하고 y와 z는 변경되지 않을 때, 전체 변환 평가 중에 기본값이 사용됩니다.

Returns: java.lang.Object - 채널의 기본값. 채널에 연결된 키프레임 시퀀스가 없을 경우, 애니메이션 평가 중에 기본값이 사용됩니다. 실제 시나리오: 애니메이션이 노드의 x 좌표만 애니메이션하고 y와 z는 변경되지 않을 때, 전체 변환 평가 중에 기본값이 사용됩니다.

getKeyFrames()

public List<KeyFrame> getKeyFrames()

이 곡선의 키 프레임을 가져옵니다.

Returns: java.util.List<com.aspose.threed.KeyFrame> - 이 곡선의 키 프레임.

getKeyframeSequence()

public KeyframeSequence getKeyframeSequence()

이 채널 내부에 연결된 키프레임 시퀀스를 가져옵니다.

Returns: KeyframeSequence - associated keyframe sequence inside this channel

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:

매개변수형식설명
propertyProperty제거할 속성

Returns: boolean - 속성이 성공적으로 제거되면 true

removeProperty(String property)

public boolean removeProperty(String property)

이름으로 식별되는 지정된 속성을 제거합니다.

Parameters:

매개변수형식설명
속성java.lang.String제거할 속성

Returns: boolean - 속성이 성공적으로 제거되면 true

reset()

public void reset()

모든 키 프레임을 제거하고 포스트/프리 동작을 재설정합니다.

setDefaultValue(Object value)

public void setDefaultValue(Object value)

채널의 기본값을 설정합니다. 채널에 연결된 키프레임 시퀀스가 없을 경우, 애니메이션 평가 중에 기본값이 사용됩니다. 실제 시나리오: 애니메이션이 노드의 x 좌표만 애니메이션하고 y와 z는 변경되지 않을 때, 전체 변환 평가 중에 기본값이 사용됩니다.

Parameters:

매개변수형식설명
java.lang.Object새 값

setKeyframeSequence(KeyframeSequence value)

public void setKeyframeSequence(KeyframeSequence value)

이 채널 내부에 연결된 키프레임 시퀀스를 가져옵니다.

Parameters:

매개변수형식설명
valueKeyframeSequence새 값

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:

매개변수형식설명
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

매개변수형식설명
arg0long
arg1int