Class ArmatureModifierData


  • public class ArmatureModifierData
    extends CFacade
    Generated facet for DNA struct type 'ArmatureModifierData'.

    Class Documentation

    • Field Detail

      • __DNA__SDNA_INDEX

        public static final int __DNA__SDNA_INDEX
        This is the sdna index of the struct ArmatureModifierData.

        It is required when allocating a new block to store data for ArmatureModifierData.

        See Also:
        StructDNA, BlockTable, Constant Field Values
      • __DNA__FIELD__modifier

        public static final long[] __DNA__FIELD__modifier
        Field descriptor (offset) for struct member 'modifier'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         ArmatureModifierData armaturemodifierdata = ...;
         CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__modifier);
         CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
         

        Metadata

        • Field: 'modifier'
        • Signature: 'ModifierData'
        • Actual Size (32bit/64bit): 100/120
      • __DNA__FIELD__deformflag

        public static final long[] __DNA__FIELD__deformflag
        Field descriptor (offset) for struct member 'deformflag'.

        Field Documentation

        Blender Source Code

        Deformflag replaces armature->deformflag.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         ArmatureModifierData armaturemodifierdata = ...;
         CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__deformflag);
         CPointer<Short> p_deformflag = p.cast(new Class[]{Short.class});
         

        Metadata

        • Field: 'deformflag'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD__multi

        public static final long[] __DNA__FIELD__multi
        Field descriptor (offset) for struct member 'multi'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         ArmatureModifierData armaturemodifierdata = ...;
         CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__multi);
         CPointer<Short> p_multi = p.cast(new Class[]{Short.class});
         

        Metadata

        • Field: 'multi'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD___pad2

        public static final long[] __DNA__FIELD___pad2
        Field descriptor (offset) for struct member '_pad2'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         ArmatureModifierData armaturemodifierdata = ...;
         CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD___pad2);
         CPointer<CArrayFacade<Byte>> p__pad2 = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: '_pad2'
        • Signature: 'char[4]'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD__object

        public static final long[] __DNA__FIELD__object
        Field descriptor (offset) for struct member 'object'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         ArmatureModifierData armaturemodifierdata = ...;
         CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__object);
         CPointer<CPointer<BlenderObject>> p_object = p.cast(new Class[]{CPointer.class, BlenderObject.class});
         

        Metadata

        • Field: 'object'
        • Signature: 'Object*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__prevCos

        public static final long[] __DNA__FIELD__prevCos
        Field descriptor (offset) for struct member 'prevCos'.

        Field Documentation

        Blender Source Code

        Stored input of previous modifier, for vertexgroup blending.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         ArmatureModifierData armaturemodifierdata = ...;
         CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__prevCos);
         CPointer<CPointer<Float>> p_prevCos = p.cast(new Class[]{CPointer.class, Float.class});
         

        Metadata

        • Field: 'prevCos'
        • Signature: 'float*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__defgrp_name

        public static final long[] __DNA__FIELD__defgrp_name
        Field descriptor (offset) for struct member 'defgrp_name'.

        Field Documentation

        Blender Source Code

        MAX_VGROUP_NAME.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         ArmatureModifierData armaturemodifierdata = ...;
         CPointer<Object> p = armaturemodifierdata.__dna__addressof(ArmatureModifierData.__DNA__FIELD__defgrp_name);
         CPointer<CArrayFacade<Byte>> p_defgrp_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: 'defgrp_name'
        • Signature: 'char[64]'
        • Actual Size (32bit/64bit): 64/64
    • Constructor Detail

      • ArmatureModifierData

        public ArmatureModifierData​(long __address,
                                    Block __block,
                                    BlockTable __blockTable)
    • Method Detail

      • getModifier

        public ModifierData getModifier()
                                 throws java.io.IOException
        Get method for struct member 'modifier'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__modifier
      • setModifier

        public void setModifier​(ModifierData modifier)
                         throws java.io.IOException
        Set method for struct member 'modifier'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__modifier
      • getDeformflag

        public short getDeformflag()
                            throws java.io.IOException
        Get method for struct member 'deformflag'.

        Field Documentation

        Blender Source Code

        Deformflag replaces armature->deformflag.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__deformflag
      • setDeformflag

        public void setDeformflag​(short deformflag)
                           throws java.io.IOException
        Set method for struct member 'deformflag'.

        Field Documentation

        Blender Source Code

        Deformflag replaces armature->deformflag.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__deformflag
      • getMulti

        public short getMulti()
                       throws java.io.IOException
        Get method for struct member 'multi'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__multi
      • setMulti

        public void setMulti​(short multi)
                      throws java.io.IOException
        Set method for struct member 'multi'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__multi
      • get_pad2

        public CArrayFacade<java.lang.Byte> get_pad2()
                                              throws java.io.IOException
        Get method for struct member '_pad2'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD___pad2
      • set_pad2

        public void set_pad2​(CArrayFacade<java.lang.Byte> _pad2)
                      throws java.io.IOException
        Set method for struct member '_pad2'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD___pad2
      • getPrevCos

        public CPointer<java.lang.Float> getPrevCos()
                                             throws java.io.IOException
        Get method for struct member 'prevCos'.

        Field Documentation

        Blender Source Code

        Stored input of previous modifier, for vertexgroup blending.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__prevCos
      • setPrevCos

        public void setPrevCos​(CPointer<java.lang.Float> prevCos)
                        throws java.io.IOException
        Set method for struct member 'prevCos'.

        Field Documentation

        Blender Source Code

        Stored input of previous modifier, for vertexgroup blending.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__prevCos
      • getDefgrp_name

        public CArrayFacade<java.lang.Byte> getDefgrp_name()
                                                    throws java.io.IOException
        Get method for struct member 'defgrp_name'.

        Field Documentation

        Blender Source Code

        MAX_VGROUP_NAME.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__defgrp_name
      • setDefgrp_name

        public void setDefgrp_name​(CArrayFacade<java.lang.Byte> defgrp_name)
                            throws java.io.IOException
        Set method for struct member 'defgrp_name'.

        Field Documentation

        Blender Source Code

        MAX_VGROUP_NAME.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__defgrp_name