BNBBeautyMorphing

Objective-C

@interface BNBBeautyMorphing : NSObject

/**
 *Sets face morphing weight.
 *@param value (float) morphing weight.
 */
- (void)setFaceWeight:(float)value;

/**@return morphing weight (float). */
- (float)getFaceWeight;

/**
 *Sets nose morphing weight.
 *@param value (float) morphing weight.
 */
- (void)setNoseWeight:(float)value;

/**@return morphing weight (float). */
- (float)getNoseWeight;

/**
 *Sets nose morphing weight.
 *@param value (float) morphing weight.
 */
- (void)setEyesWeight:(float)value;

/**@return morphing weight (float). */
- (float)getEyesWeight;

@end

Swift

class BNBBeautyMorphing : NSObject

Undocumented

  • Sets face morphing weight.

    Declaration

    Objective-C

    - (void)setFaceWeight:(float)value;

    Swift

    func setFaceWeight(_ value: Float)

    Parameters

    value

    (float) morphing weight.

  • Declaration

    Objective-C

    - (float)getFaceWeight;

    Swift

    func getFaceWeight() -> Float

    Return Value

    morphing weight (float).

  • Sets nose morphing weight.

    Declaration

    Objective-C

    - (void)setNoseWeight:(float)value;

    Swift

    func setNoseWeight(_ value: Float)

    Parameters

    value

    (float) morphing weight.

  • Declaration

    Objective-C

    - (float)getNoseWeight;

    Swift

    func getNoseWeight() -> Float

    Return Value

    morphing weight (float).

  • Sets nose morphing weight.

    Declaration

    Objective-C

    - (void)setEyesWeight:(float)value;

    Swift

    func setEyesWeight(_ value: Float)

    Parameters

    value

    (float) morphing weight.

  • Declaration

    Objective-C

    - (float)getEyesWeight;

    Swift

    func getEyesWeight() -> Float

    Return Value

    morphing weight (float).