BindPoint

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

public class BindPoint extends A3DObject

일반적으로 객체의 속성에 BindPoint이 생성되며, 일부 속성 유형은 여러 구성 요소 필드(예: Vector3 필드)를 포함합니다. BindPoint은 각 구성 요소 필드에 대해 채널을 생성하고, 해당 필드를 하나 이상의 키프레임 시퀀스 인스턴스에 채널을 통해 연결합니다.

생성자

생성자설명
BindPoint(Scene scene, Property prop)새로운 BindPoint 클래스 인스턴스를 초기화합니다.

메서드

메서드설명
addChannel(String name, Class type, Object value)지정된 채널 속성을 추가합니다.
addChannel(String name, Object value)지정된 채널 속성을 추가합니다.
bindKeyframeSequence(String channelName, KeyframeSequence sequence)키프레임 시퀀스를 지정된 채널에 바인드합니다.
createKeyframeSequence(String name)새 곡선을 생성하고 이를 곡선 매핑의 첫 번째 채널에 연결합니다.
equals(Object arg0)
findProperty(String propertyName)속성을 찾습니다.
get(String channelName)주어진 이름으로 채널을 가져옵니다.
getChannel(String channelName)주어진 이름으로 채널을 가져옵니다.
getChannelsCount()이 애니메이션 곡선 매핑에 정의된 속성 채널의 총 개수를 가져옵니다.
getClass()
getKeyframeSequence(String channelName)지정된 채널에서 첫 번째 키프레임 시퀀스를 가져옵니다.
getName()이름을 가져옵니다.
getProperties()모든 속성의 컬렉션을 가져옵니다.
getProperty()CurveMapping과 연결된 속성을 가져옵니다.
getProperty(String property)지정된 속성의 값을 가져옵니다
hashCode()
notify()
notifyAll()
removeProperty(Property property)동적 속성을 제거합니다.
removeProperty(String property)이름으로 식별되는 지정된 속성을 제거합니다.
resetChannels()이 애니메이션 곡선 매핑의 속성 채널을 비웁니다.
setName(String value)이름을 설정합니다.
setProperty(Property value)CurveMapping과 연결된 속성을 가져옵니다.
setProperty(String property, Object value)지정된 속성의 값을 설정합니다.
toString()객체를 문자열로 포맷합니다
wait()
wait(long arg0)
wait(long arg0, int arg1)

BindPoint(Scene scene, Property prop)

public BindPoint(Scene scene, Property prop)

새로운 BindPoint 클래스 인스턴스를 초기화합니다.

Parameters:

매개변수형식설명
sceneScene애니메이션을 포함하는 씬입니다.
propProperty속성.

addChannel(String name, Class type, Object value)

public boolean addChannel(String name, Class<?> type, Object value)

지정된 채널 속성을 추가합니다.

Parameters:

매개변수형식설명
이름java.lang.String이름.
typejava.lang.Class형식.
java.lang.Object값.

Returns: boolean - 채널이 추가되었으면 true, 그렇지 않으면 false.

addChannel(String name, Object value)

public boolean addChannel(String name, Object value)

지정된 채널 속성을 추가합니다.

Parameters:

매개변수형식설명
이름java.lang.String이름.
java.lang.Object값.

Returns: boolean - 채널이 추가되었으면 true, 그렇지 않으면 false.

bindKeyframeSequence(String channelName, KeyframeSequence sequence)

public void bindKeyframeSequence(String channelName, KeyframeSequence sequence)

키프레임 시퀀스를 지정된 채널에 바인드합니다.

Parameters:

매개변수형식설명
channelNamejava.lang.String키프레임 시퀀스가 바인드될 채널
sequenceKeyframeSequence바인드할 키프레임 시퀀스

createKeyframeSequence(String name)

public KeyframeSequence createKeyframeSequence(String name)

새 곡선을 생성하고 이를 곡선 매핑의 첫 번째 채널에 연결합니다.

Parameters:

매개변수형식설명
이름java.lang.String새 시퀀스의 이름입니다.

Returns: KeyframeSequence - The keyframe sequence.

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.

get(String channelName)

public AnimationChannel get(String channelName)

주어진 이름으로 채널을 가져옵니다.

Parameters:

매개변수형식설명
channelNamejava.lang.String채널 이름

Returns: AnimationChannel - Animation channel

getChannel(String channelName)

public AnimationChannel getChannel(String channelName)

주어진 이름으로 채널을 가져옵니다.

Parameters:

매개변수형식설명
channelNamejava.lang.String찾을 채널 이름

Returns: AnimationChannel - Channel with the name

getChannelsCount()

public int getChannelsCount()

이 애니메이션 곡선 매핑에 정의된 속성 채널의 총 개수를 가져옵니다.

Returns: int - 채널 수.

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getKeyframeSequence(String channelName)

public KeyframeSequence getKeyframeSequence(String channelName)

지정된 채널에서 첫 번째 키프레임 시퀀스를 가져옵니다.

Parameters:

매개변수형식설명
channelNamejava.lang.String찾을 채널 이름

Returns: KeyframeSequence - First keyframe sequence with the channel name

getName()

public String getName()

이름을 가져옵니다.

Returns: java.lang.String - 이름.

getProperties()

public PropertyCollection getProperties()

모든 속성의 컬렉션을 가져옵니다.

Returns: PropertyCollection - the collection of all properties.

getProperty()

public Property getProperty()

CurveMapping과 연결된 속성을 가져옵니다.

Returns: Property - the property associated with the CurveMapping

getProperty(String property)

public Object getProperty(String property)

지정된 속성의 값을 가져옵니다

Parameters:

매개변수형식설명
속성java.lang.String속성 이름

Returns: java.lang.Object - 찾은 속성의 값

hashCode()

public native int hashCode()

Returns: int

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

resetChannels()

public void resetChannels()

이 애니메이션 곡선 매핑의 속성 채널을 비웁니다.

setName(String value)

public void setName(String value)

이름을 설정합니다.

Parameters:

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

setProperty(Property value)

public void setProperty(Property value)

CurveMapping과 연결된 속성을 가져옵니다.

Parameters:

매개변수형식설명
valueProperty새 값

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