This is the discussion forum for Helix Toolkit.
For bugs and new features, use the issue tracker located at GitHub.
Also try the chat room!
0

шкаф угловой эверест

kontent seo 2 years ago 0

Угловой шкаф Everest - это идеальное решение для максимального использования углового пространства в вашем доме. Его компактные размеры и эффективное расположение полок и отделений делают его незаменимым элементом любого интерьера. Этот шкаф позволит вам оптимально организовать хранение одежды, обуви, аксессуаров и других вещей, даже если у вас ограниченное пространство. Кроме того, угловой шкаф Everest отличается стильным и современным дизайном, который добавит уют и функциональность вашей комнате, при этом не занимая лишнего места. Это идеальное решение для тех, кто стремится максимально эффективно использовать каждый угол своего дома.

тумба для обуви Эверест
пеленальный комод эверест
шкаф угловой эверест
меблі Еверест
0

кухня эверест

Marina Pokrovska 2 years ago updated by kanpat88 2 years ago 1

Кухни Эверест: Комфорт и функциональность

Кухня Эверест - это идеальное решение для тех, кто ценит комфорт и функциональность в своей кухне. Они предлагают широкий выбор моделей и дизайнов, позволяющих адаптировать кухню к вашим потребностям и предпочтениям. Кухни Эверест отличаются высоким качеством изготовления и использованием прочных материалов, обеспечивающих долговечность и надежность.

0

Is it possible to draw a simple text

Michael Insberg 3 years ago 0

Hi,

I want to draw a text with helix anny suggestions how to do that?

Greeting Michael

0

Rotating Label

Alberto 3 years ago 0

Hi, I made an application which render a panel that might have different texture on each side. The model is free of rotation over all axes. My boss asked me if would be possible to identify each panel side with a label (one digit for each side) and let it rotate with the panel... but sincerely I dunno how to achieve this, expecally to keep each label "in front" of the view point.

Any hints?


Image 181

0

writing up docs

jmg07 4 years ago 0

Hi, 

if anyone wanted some help writing up docs for helix toolkit happy to help.

0

Can helix toolkit be used with .NET 5.0? And which nuget SharpDX package should be used?

jmg07 4 years ago 0

Hi, 


I'm guessing helix toolkit can be used with .NET 5.0 because it works in my wpf project - but i did notice in the package tab it says "Package 'HelixToolkit.Wpf.2.17.0 "  was restored using .NetFramework.Version=4.6.1, etc."" 


I wasn't 100% sure which nuget package to use - the "HelixToolkit" or "HelixToolkit.Wpf".


And at the link https://github.com/helix-toolkit/helix-toolkit there are a list of sharpDX packages and wasn't sure whether to use HelixToolkit.SharpDX.wpf or HelixToolkit.SharpDx.core.


Thanks.

0

HelixToolKit 3d How to add shadows?

Zaug 4 years ago 0
I'm building an engine with helix toolkit, but I can't add shadows, I'm new to helix, and I need your help, please.......
0

How can I draw many circles with SharpDX

MichaeInsberg402 4 years ago updated by Kong Lee 3 years ago 206

Hi,

I want to draw many circles on the viewport.

Each circle should have a differnt color.

How can I do that.

I try it with the LineBuilder but then circle has many colors.

foreach (var _ in Lines.LineGeometry.Lines)
{
  var color = GetNewColor(); //Ttis method just return a clolor
  Lines.LineGeometry.Colors.Add(color);
  Lines.LineGeometry.Colors.Add(color);

Any suggestions?

0

How can I zoom in and out in Helix with SharpDX with C#

MichaeInsberg402 4 years ago updated by ก็หมวย นี่คะ 4 months ago 208

I try to zoom in and out in the code behind.

<hx:Viewport3DX
            Name="Viewport"
            BackgroundColor="Black"
            Camera="{Binding Camera}"
            EffectsManager="{Binding EffectsManager}"
            ShowViewCube="False">
</hx:Viewport3DX>


public OrthographicCamera Camera { get; }

public void ZoomIn()
{
  var newPosition = new Point3D(Camera.Position.X, Camera.Position.Y, Camera.Position.Z * 1.5);
  Camera.AnimateTo(newPosition, Camera.LookDirection, Camera.UpDirection, 500);
} 

but nothing changed.


The Camera.Position.Z was changed but not the view of hte application.


Any suggestions?

Greeting Michael

0

How to invert Zoom In/Out with MouseWheel ?

mapa 4 years ago 0

Hello,

How can I invert to Zoom In/Out Direction with the MouseWheel?

I want zoom in if I scroll down with the mouse wheel and zoom out if I scroll up with the mousewheel.

How can I solve this?

regards, mx