BNBMorphing

Objective-C

@interface BNBMorphing : NSObject

/**@return morphing type (morphing_type) */
- (BNBMorphingType)getType;

/**@return morphing name (string) */
- (nonnull NSString *)getName;

/**
 *sets morphing warp mesh. If morhping type is beauty must be only "$builtin$meshes/beauty" mesh.
 *@param mesh (mesh): morphing warp mesh
 */
- (void)setWarpMesh:(nullable BNBMesh *)mesh;

/**@return warp (mesh) */
- (nullable BNBMesh *)getWarpMesh;

@end

Swift

class BNBMorphing : NSObject

Undocumented

  • Declaration

    Objective-C

    - (BNBMorphingType)getType;

    Swift

    func getType() -> BNBMorphingType

    Return Value

    morphing type (morphing_type)

  • Declaration

    Objective-C

    - (nonnull NSString *)getName;

    Swift

    func getName() -> String

    Return Value

    morphing name (string)

  • sets morphing warp mesh. If morhping type is beauty must be only “$builtin$meshes/beauty” mesh.

    Declaration

    Objective-C

    - (void)setWarpMesh:(nullable BNBMesh *)mesh;

    Swift

    func setWarpMesh(_ mesh: BNBMesh?)

    Parameters

    mesh

    (mesh): morphing warp mesh

  • Declaration

    Objective-C

    - (nullable BNBMesh *)getWarpMesh;

    Swift

    func getWarpMesh() -> BNBMesh?

    Return Value

    warp (mesh)