This page has been translated automatically.
Видеоуроки
Interface
Essentials
Advanced
Подсказки и советы
Основы
Программирование на C#
Рендеринг
Professional (SIM)
Принципы работы
Свойства (properties)
Компонентная Система
Рендер
Физика
Редактор UnigineEditor
Обзор интерфейса
Работа с ассетами
Настройки и предпочтения
Работа с проектами
Настройка параметров ноды
Setting Up Materials
Настройка свойств
Освещение
Sandworm
Использование инструментов редактора для конкретных задач
Расширение функционала редактора
Встроенные объекты
Ноды (Nodes)
Объекты (Objects)
Эффекты
Декали
Источники света
Geodetics
World-ноды
Звуковые объекты
Объекты поиска пути
Players
Программирование
Основы
Настройка среды разработки
Примеры использования
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Плагины
Форматы файлов
Materials and Shaders
Rebuilding the Engine Tools
Интерфейс пользователя (GUI)
Двойная точность координат
API
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Работа с контентом
Оптимизация контента
Материалы
Визуальный редактор материалов
Сэмплы материалов
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials
Внимание! Эта версия документация УСТАРЕЛА, поскольку относится к более ранней версии SDK! Пожалуйста, переключитесь на самую актуальную документацию для последней версии SDK.
Внимание! Эта версия документации описывает устаревшую версию SDK, которая больше не поддерживается! Пожалуйста, обновитесь до последней версии SDK.

Unigine::ShapeContact Class

Header: #include <UniginePhysics.h>

This class stores the result of a physical contact (coordinates of the point, contact duration, penetration depth, contact object, physical shapes participating in the contact, index of the contact surface). This class can be used for implementation of your own custom physics or a custom player.

ShapeContact Class

Members


static ShapeContactPtr create ( ) #

ShapeContact class constructor.

void setID ( int id ) #

Sets a new contact ID.

Arguments

  • int id - Contact ID.

int getID ( ) #

Returns the contact ID.

Return value

Contact ID.

void setSurface ( int surface ) #

Sets a new contact surface number.

Arguments

  • int surface - Contact surface number.

int getSurface ( ) #

Returns the contact surface number.

Return value

Contact surface number.

void setTime ( float time ) #

Sets the time when the contact occurs. In case of CCD (for spheres or capsules), it's the time starting from the current physics simulation tick to the moment when the calculated contact is bound to happen. In case of non-continuous collision detection, it is always 0.

Arguments

  • float time - Contact time, in milliseconds.

float getTime ( ) #

Returns the time when the contact occurs. In case of CCD (for spheres or capsules), it returns the time starting from the current physics simulation tick to the moment when the calculated contact is bound to happen. In case of non-continuous collision detection, 0 is always returned.

Return value

Contact time, in milliseconds.

void setDepth ( float depth ) #

Sets a new penetration depth of the contact. This distance is measured along the contact normal.

Arguments

  • float depth - Contact depth, in units.

float getDepth ( ) #

Returns the penetration depth of the contact. This distance is measured along the contact normal.

Return value

Contact depth, in units.

void setPoint ( const Math::Vec3 & point ) #

Sets new coordinates of the contact point.

Arguments

  • const Math::Vec3 & point - Coordinates of the contact point, in world coordinate system.

Math::Vec3 getPoint ( ) #

Returns the coordinates of the contact point.

Return value

Coordinates of the contact point, in world coordinate system.

void setNormal ( const Math::vec3 & normal ) #

Sets new normal coordinates at the contact point.

Arguments

  • const Math::vec3 & normal - Normal coordinates at the contact point.

Math::vec3 getNormal ( ) #

Returns the normal coordinates at the contact point.

Return value

Normal coordinates at the contact point.

void setShape0 ( const Ptr<Shape> & shape0 ) #

Sets the first shape participating in the contact.

Arguments

  • const Ptr<Shape> & shape0 - First shape participating in the contact.

Ptr<Shape> getShape0 ( ) #

Returns the first shape participating in the contact.

Return value

First shape participating in the contact.

void setShape1 ( const Ptr<Shape> & shape1 ) #

Sets the second shape participating in the contact.

Arguments

  • const Ptr<Shape> & shape1 - Second shape participating in the contact.

Ptr<Shape> getShape1 ( ) #

Returns the second shape participating in the contact.

Return value

Second shape participating in the contact.

void setObject ( const Ptr<Object> & val ) #

Sets the object participating in the contact.

Arguments

Ptr<Object> getObject ( ) #

Returns the object participating in the contact.

Return value

Contact object.
Last update: 10.10.2022
Build: ()