MorphTargetChannel

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

public class MorphTargetChannel extends A3DObject

MorphTargetChannel은 MorphTargetDeformer 에 의해 대상 기하학을 조직하는 데 사용됩니다. FBX와 같은 일부 파일 형식은 여러 채널을 병렬로 지원합니다. Remarks: 가중치는 0과 1.0 사이이며, 대상의 기본 가중치는 0.0입니다;

생성자

생성자설명
MorphTargetChannel(String name)새로운 MorphTargetChannel 클래스 인스턴스를 초기화합니다.
MorphTargetChannel()새로운 MorphTargetChannel 클래스 인스턴스를 초기화합니다.

필드

필드설명
DEFAULT_WEIGHT모프 타겟의 기본 가중치.

메서드

메서드설명
equals(Object arg0)
findProperty(String propertyName)속성을 찾습니다.
get(Shape target)지정된 기하학에 대한 가중치를 가져옵니다
getChannelWeight()이 채널의 디포머 가중치를 가져옵니다.
getClass()
getName()이름을 가져옵니다.
getProperties()모든 속성의 컬렉션을 가져옵니다.
getProperty(String property)지정된 속성의 값을 가져옵니다
getTargets()채널과 연결된 모든 타겟을 가져옵니다.
getWeight(Shape target)지정된 타겟에 대한 가중치를 가져옵니다. 타겟이 이 채널에 속하지 않으면 기본값 0이 반환됩니다.
getWeights()타겟 기하학의 전체 가중치 값을 가져옵니다.
hashCode()
notify()
notifyAll()
removeProperty(Property property)동적 속성을 제거합니다.
removeProperty(String property)이름으로 식별되는 지정된 속성을 제거합니다.
set(Shape target, double value)지정된 기하학에 대한 가중치를 설정합니다
setChannelWeight(double value)이 채널의 디포머 가중치를 설정합니다.
setName(String value)이름을 설정합니다.
setProperty(String property, Object value)지정된 속성의 값을 설정합니다.
setWeight(Shape target)지정된 타겟에 대한 가중치를 설정합니다. 기본값은 1이며, 범위는 0~1 사이여야 합니다.
setWeight(Shape target, double weight)지정된 타겟에 대한 가중치를 설정합니다. 기본값은 1이며, 범위는 0~1 사이여야 합니다.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

MorphTargetChannel(String name)

public MorphTargetChannel(String name)

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

Parameters:

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

MorphTargetChannel()

public MorphTargetChannel()

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

DEFAULT_WEIGHT

public static final double DEFAULT_WEIGHT

모프 타겟의 기본 가중치.

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(Shape target)

public double get(Shape target)

지정된 기하학에 대한 가중치를 가져옵니다

Parameters:

매개변수형식설명
targetShape타겟 기하학.

Returns: double - 가중치

getChannelWeight()

public double getChannelWeight()

이 채널의 디포머 가중치를 가져옵니다. 가중치는 0.0에서 1.0 사이입니다.

Returns: double - 이 채널의 디포머 가중치. 가중치는 0.0에서 1.0 사이입니다.

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getName()

public String getName()

이름을 가져옵니다.

Returns: java.lang.String - 이름.

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 - 찾은 속성의 값

getTargets()

public List<Shape> getTargets()

채널과 연결된 모든 타겟을 가져옵니다.

Returns: java.util.List<com.aspose.threed.Shape> - 채널과 연결된 모든 타겟.

getWeight(Shape target)

public double getWeight(Shape target)

지정된 타겟에 대한 가중치를 가져옵니다. 타겟이 이 채널에 속하지 않으면 기본값 0이 반환됩니다.

Parameters:

매개변수형식설명
targetShape

Returns: double

getWeights()

public List<Double> getWeights()

타겟 기하학의 전체 가중치 값을 가져옵니다.

Returns: java.util.List<java.lang.Double> - 타겟 기하학의 전체 가중치 값.

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

set(Shape target, double value)

public void set(Shape target, double value)

지정된 기하학에 대한 가중치를 설정합니다

Parameters:

매개변수형식설명
targetShape타겟 기하학.
double새 값

setChannelWeight(double value)

public void setChannelWeight(double value)

이 채널의 디포머 가중치를 설정합니다. 가중치는 0.0에서 1.0 사이입니다.

Parameters:

매개변수형식설명
double새 값

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속성의 값

setWeight(Shape target)

public void setWeight(Shape target)

지정된 타겟에 대한 가중치를 설정합니다. 기본값은 1이며, 범위는 0~1 사이여야 합니다.

Parameters:

매개변수형식설명
targetShape

setWeight(Shape target, double weight)

public void setWeight(Shape target, double weight)

지정된 타겟에 대한 가중치를 설정합니다. 기본값은 1이며, 범위는 0~1 사이여야 합니다.

Parameters:

매개변수형식설명
targetShape
가중치double

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