Navigation

    • Register
    • Login
    • Search
    1. Home
    2. karpique
    K

    karpique

    @karpique

    0
    Reputation
    13
    Posts
    8
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    • Profile
    • More
      • Following
      • Followers
      • Topics
      • Posts
      • Best
      • Groups
    karpique Follow

    Best posts made by karpique

    This user does not have any upvoted posts yet.

    Latest posts made by karpique

    RE: Set Ngons with Python

    @ferdinand thanks for answer, this solution works fine!
    Actually because of bug I thought that melt command only returns new object instead of changing current one. Thanks again!

    Is it 100% safe to select all polygons to melt at once? What if two or more Ngons are neighbours — will that worked out?

    posted in Cinema 4D SDK •
    Set Ngons with Python

    I got Ngons translation map and I'd like to change other Polygon object made of Cpolygons according to that map.

    Is there a way to do it without replacing polygon object with new one?

    posted in Cinema 4D SDK •
    RE: Copy mesh from one object to another with Python

    @ferdinand I get Ngon translation map and applied MCOMMAND_MELT but stuck again — as I understand SendModellingCommand only returns new object with melted ngons, but my goal is to correct object that already exists in scene...

    Is there any other ways of setting up Ngon translation map with python?

    posted in Cinema 4D SDK •
    RE: Copy mesh from one object to another with Python

    @ferdinand thanks! I have one more question: after replacing Tpoint and Tpolygon tags object seems to keep it's old bounding box parameters and disappear from viewport accordigly to them. Is there a way to update this property?

    posted in Cinema 4D SDK •
    Check C4D version for using Fields

    Since fields introduced in R20, is it correct statement to check before call them?

    if c4d.GetC4DVersion() > 20000:
       doFieldsStuff()
    
    posted in Cinema 4D SDK •
    RE: Select custom tab with python

    @ferdinand thanks!
    My goal is to:

    1. Rename "User Data" tab of my tag
    2. Keep it opened by default (or make that tab opened with python) after tag placing in scene

    I tried to change DESC_NAME property of default user data group but didn't succeed, thats why I created parentless group with name needed, but as I see it cant be selected by default. Is there some other way of reaching my goal?

    posted in Cinema 4D SDK •
    RE: Select custom tab with python

    @fwilleke80 Thanks for answer! Unfortunately I'm dealing with python tag, not plugin

    posted in Cinema 4D SDK •
    Select custom tab with python

    I create Python Tag with custom group (tab), Tag has selected by default tab "Tag".
    How to set selected my newly created tab?

    posted in Cinema 4D SDK •
    RE: Is it possible to resize a c4d.VariableTag?

    @ferdinand thanks again, it’s more clear now!
    About my concept: I’m trying to make procedural “current state to object” where result base object remains the same and only thing that changes is it’s mesh. It will allow users to direct manipulate object that has procedural source - cloner, exturde, etc, and keep all lnks to that changing mesh valid. Manipulations can include utilizing vertex colors/weights with fields, attaching stuff to points with xpresso, using object where mesh is strictly needed (like collider in thinking particles, etc). Some of that tricks can be achieved with correction deformer, but not all of them.

    As far as I know c4d.utils.SendModelingCommand will create new object, so its not the case. Copying polygon and point tags is super fast so I hope there is some way to keep this operation in sync.

    For instance, how VertexColorTag being resized if MCOMMAND_DELETE applied? Does SendModelingCommand held that or something else?

    posted in Cinema 4D SDK •
    Is it possible to resize a c4d.VariableTag?

    And another question: Cinema 4D crashes if target object has Vertex Color Tag and after that get update of Tpoint & Tpolygon tags. Is there a way of resizing Vertex Color Tag?

    edit (Ferdinand): Forked from Copy mesh from one object to another with Python.

    posted in Cinema 4D SDK •