// xs_yann

18Nov/081

xsPostCorrector

3,885 views

Ceci est un plugin C++ de PostEffect pour Cinema 4D, il permet de modifier le rendu d'objets désignés par object buffer en post effect.

This is a C++ PostEffect plugin for Cinema 4D, it allows to modifiy rendered objects which have a specific object buffer ID.

Download xsPostCorrector

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...
18Nov/0838

xsThickness

14,789 views

 

Ceci est un plugin C++ pour Cinema 4D qui permet de donner une épaisseur dynamique à un objet.

This is a C++ plugin for Cinema 4D which can give a dynamic thickness to an object.

Download xsThickness

Video demonstration

1 Star2 Stars3 Stars4 Stars5 Stars (6 votes, average: 5.00 out of 5)
Loading ... Loading ...
18Nov/084

xsGrilleCadrage

4,964 views

GrilleCadrage icn

Ceci est un plugin C++ pour Cinema 4D, d'après une idée et un Xpresso originel de tabou.
Il sert à afficher une grille (invisible au rendu) directement dans le cadre de la caméra. Les paramètres permettent d'afficher ou non la grille, de changer sa couleur, et de choisir entre deux types de grille : division par la moitié ou par le tiers.

This is a C++ plugin for Cinema 4D, an idea and an original Xpresso from tabou.
It is used to display a grid (rendered invisible) directly in the field of view. Parameters can display the grid or not, change its color, and choose between two types of grid : division by half or third.

Download xsGrilleCadrage

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
18Nov/081

xsSplinePointSelector

2,285 views

xsSPS icn

Ceci est un plugin C++ pour Cinema 4D qui permet de faciliter la séléction de 1 point sur n, sur une spline.
This is a C++ plugin for Cinema 4D to simplify the selection of 1 point on n, on a spline.

Download xsSplinePointSelector

xsSPS screen

"Frequence" = Frequence de sélection des points.
"Offset" = décalage de la séléction.
"Random selection" = permet de faire une sélection "aléatoire".

1 Star2 Stars3 Stars4 Stars5 Stars (4 votes, average: 5.00 out of 5)
Loading ... Loading ...
25Feb/080

ZeroConstraints

1,164 views

icn

Ceci est un plugin pour Cinema 4D en C++ permettant de contraindre des objets au sol.
Zero Constraints is a C++ plugin for Cinema 4D which can constraints objects to floor.

Download ZeroConstaints

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...
10Feb/080

Delete selected polygons

501 views

How delete selected polygons from an object with C++.

We must use a ModelingCommandData :

  1.  
  2. Bool DeleteSPolys(BaseDocument *doc, BaseObject *op)
  3. {
  4.     ModelingCommandData mcd;
  5.     mcd.bc = op->GetDataInstance();
  6.     mcd.doc = doc;
  7.     mcd.op = op;
  8.     mcd.mode = MODIFY_POLYGONSELECTION;
  9.     mcd.flags = MODELINGCOMMANDFLAG_CREATEUNDO;
  10.     if (!SendModelingCommand(MCOMMAND_DELETE, mcd)) return FALSE;
  11.     return TRUE;
  12. }

Of course, I give a BaseObject in parameter but the object must be edited (PointObject, PolygonObject ...), it is just to avoid cast for each use of this function.

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
Tagged as: , No Comments
5Feb/084

ZeroPolygon

1,681 views

icn

Ceci est un plugin pour Cinema4D en C++ permettant d'éviter le problème des polygones du "milieux" lors de l'extrusion.

Zero Polygon is a C++ plugin for Cinema4D to avoid the problem of "middles" polygons during an extrusion.

Download ZeroPolygon

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
28Jan/082

xs Post Render Sound

1,319 views

Ce plugin C++ pour Cinema 4D permet d'être prévenu lors de la fin d'un rendu. Soit par mail, soit en ouvrant une URL.

This C++ plugin for Cinema 4D can warn you at the end of a render. Either by email or by opening an URL.

Download xsPostRenderSound

Le plugin se trouve dans les Post-Effects :
The plugin can be found in Post-Effects :

screen xsPRS

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...